Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ACS
Public
VILLASframework
VILLASdataprocessing
Commits
5cc4d322
Commit
5cc4d322
authored
Jan 12, 2018
by
Steffen Vogel
🎅🏼
Browse files
updated setup.py and added README
parent
1f645174
Changes
2
Hide whitespace changes
Inline
Side-by-side
README.md
0 → 100644
View file @
5cc4d322
# Dataprocessing toolkit for RWTH ACS simulators
## Copyright
2017, Institute for Automation of Complex Power Systems, EONERC, RWTH Aachen University
## License
This project is released under the terms of the
[
GPL version 3
](
COPYING.md
)
.
```
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
```
For other licensing options please consult
[
Prof. Antonello Monti
](
mailto:amonti@eonerc.rwth-aachen.de
)
.
## Contact
[

](http://www.acs.eonerc.rwth-aachen.de)
-
Markus Mirz
<mmirz@eonerc.rwth-aachen.de>
-
Jan Dinkelbach
<JDinkelbach@eonerc.rwth-aachen.de>
-
Steffen Vogel
<stvogel@eonerc.rwth-aachen.de>
[
Institute for Automation of Complex Power Systems (ACS)
](
http://www.acs.eonerc.rwth-aachen.de
)
[
EON Energy Research Center (EONERC)
](
http://www.eonerc.rwth-aachen.de
)
[
RWTH University Aachen, Germany
](
http://www.rwth-aachen.de
)
setup.py
View file @
5cc4d322
import
os
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"dataprocessing"
,
version
=
"0.1"
,
packages
=
find_packages
(),
def
read
(
fname
):
dname
=
os
.
path
.
dirname
(
__file__
)
fname
=
os
.
path
.
join
(
dname
,
fname
)
try
:
import
m2r
return
m2r
.
parse_from_file
(
fname
)
except
ImportError
:
with
open
(
fname
)
as
f
:
return
f
.
read
()
setup
(
name
=
"acs-dataprocessing"
,
version
=
"0.1.1"
,
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
=
find_packages
(),
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"
],
install_requires
=
[
"matplotlib"
,
"numpy"
,
"pandas"
],
setup_requires
=
[
'm2r'
,
'wheel'
]
)
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment