Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • acs/public/villas/dataprocessing
1 result
Show changes
Commits on Source (5)
# 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 = 'acs-software@eonerc.rwth-aachen.de'
[[project.authors]]
name = 'Jan Dinkelbach'
email = 'acs-software@eonerc.rwth-aachen.de'
[[project.authors]]
name = 'Steffen Vogel'
email = 'post@steffenvogel.de'
\ No newline at end of file
import os
import re
from setuptools import setup
def cleanhtml(raw_html):
cleanr = re.compile('<.*?>')
cleantext = re.sub(cleanr, '', raw_html)
return cleantext
def read(fname):
dname = os.path.dirname(__file__)
fname = os.path.join(dname, fname)
with open(fname) as f:
contents = f.read()
sanatized = cleanhtml(contents)
try:
from m2r import M2R
m2r = M2R()
return m2r(sanatized)
except:
return sanatized
setup(
name = 'villas-dataprocessing',
version = '0.3.2',
author = 'Markus Mirz, Jan Dinkelbach, Steffen Vogel',
author_email = 'acs-software@eonerc.rwth-aachen.de',
description = ' VILLASdataprocessing is a collection of Python utitlities to support post-processing of power system simulation results.',
long_description_content_type='text/markdown',
license = 'Apache-2.0',
keywords = 'simulation power system real-time data processing',
url = 'https://git.rwth-aachen.de/acs/public/villas/dataprocessing',
packages = [ 'villas.dataprocessing', 'villas.web' ],
long_description = read('README.md'),
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'
],
install_requires = [
'matplotlib',
'numpy',
'pandas',
'scipy',
'requests',
'python-dateutil'
],
setup_requires = [
'm2r',
'wheel'
]
)
setup()
\ No newline at end of file