Skip to content
Snippets Groups Projects
Commit b8de0fa6 authored by Steffen Vogel's avatar Steffen Vogel :santa_tone2:
Browse files

code style in setup.py

parent cae2c788
No related branches found
No related tags found
No related merge requests found
......@@ -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',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment