diff --git a/setup.py b/setup.py index d59b7f8c9a12510facc554759a01ed62dd482707..92376099bce169b52fe34e90fad4c3255df11957 100644 --- a/setup.py +++ b/setup.py @@ -22,29 +22,29 @@ def read(fname): return sanatized setup( - name = "villas-dataprocessing", - version = "0.2.0", - author = "Markus Mirz, Jan Dinkelbach, Steffen Vogel", - author_email = "acs-software@eonerc.rwth-aachen.de", - description = "Several tools for processing simulation results", - license = "GPL-3.0", - keywords = "simulation power system real-time data processing", - url = "https://git.rwth-aachen.de/acs/public/simulation/data-processing", - packages = [ "villas.dataprocessing" ], + name = 'villas-dataprocessing', + version = '0.2.0', + author = 'Markus Mirz, Jan Dinkelbach, Steffen Vogel', + author_email = 'acs-software@eonerc.rwth-aachen.de', + description = 'Several tools for processing simulation results', + license = 'GPL-3.0', + keywords = 'simulation power system real-time data processing', + url = 'https://git.rwth-aachen.de/acs/public/villas/dataprocessing', + packages = [ 'villas.dataprocessing' ], long_description = read('README.md'), classifiers = [ - "Development Status :: 4 - Beta", - "Topic :: Scientific/Engineering", - "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", - "Operating System :: MacOS :: MacOS X", - "Operating System :: Microsoft :: Windows", - "Operating System :: POSIX :: Linux", - "Programming Language :: Python :: 3" + 'Development Status :: 4 - Beta', + 'Topic :: Scientific/Engineering', + 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', + 'Operating System :: MacOS :: MacOS X', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 3' ], install_requires = [ - "matplotlib", - "numpy", - "pandas" + 'matplotlib', + 'numpy', + 'pandas' ], setup_requires = [ 'm2r',