Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
VILLASdataprocessing
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACS
Public
VILLASframework
VILLASdataprocessing
Commits
5cc4d322
Commit
5cc4d322
authored
7 years ago
by
Steffen Vogel
Browse files
Options
Downloads
Patches
Plain Diff
updated setup.py and added README
parent
1f645174
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+38
-0
38 additions, 0 deletions
README.md
setup.py
+41
-3
41 additions, 3 deletions
setup.py
with
79 additions
and
3 deletions
README.md
0 → 100644
+
38
−
0
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
)
This diff is collapsed.
Click to expand it.
setup.py
+
41
−
3
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
'
]
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment