13 lines
182 B
Python
13 lines
182 B
Python
|
|
from setuptools import setup
|
||
|
|
|
||
|
|
setup(
|
||
|
|
name='PVPlant',
|
||
|
|
version='',
|
||
|
|
packages=[''],
|
||
|
|
url='',
|
||
|
|
license='',
|
||
|
|
author='javie',
|
||
|
|
author_email='',
|
||
|
|
description=''
|
||
|
|
)
|