forked from VILLASframework/dataprocessing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (42 loc) · 1.4 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# SPDX-FileCopyrightText: 2023, Institute for Automation of Complex Power Systems, EONERC, RWTH Aachen University
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools", "wheel", "build"]
build-backend = "setuptools.build_meta"
[project]
name = 'villas-dataprocessing'
version = '0.3.2'
description = ' VILLASdataprocessing is a collection of Python utitlities to support post-processing of power system simulation results.'
readme = 'README.md'
requires-python = '>=3.7'
keywords = ['simulation', 'power', 'system', 'real-time', 'villas', 'data processing']
license.text = 'Apache-2.0'
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: Apache Software License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
]
dependencies = [
'matplotlib',
'numpy',
'pandas',
'scipy',
'requests',
'python-dateutil',
]
[project.urls]
GitHub = 'https://github.com/VILLASframework/dataprocessing'
Homepage = 'https://villas.fein-aachen.org'
[[project.authors]]
name = 'Markus Mirz'
email = '[email protected]'
[[project.authors]]
name = 'Jan Dinkelbach'
email = '[email protected]'
[[project.authors]]
name = 'Steffen Vogel'
email = '[email protected]'