2020-06-07 23:24:21 +02:00
|
|
|
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
|
2022-07-04 18:20:03 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2023-08-31 11:25:01 +02:00
|
|
|
|
2020-06-07 23:09:12 +02:00
|
|
|
from setuptools import setup, find_namespace_packages
|
2018-10-28 14:41:55 +01:00
|
|
|
from glob import glob
|
2020-10-15 10:20:49 +02:00
|
|
|
import sys
|
2018-10-28 14:41:55 +01:00
|
|
|
|
2018-11-27 18:22:03 +01:00
|
|
|
with open('README.md') as f:
|
|
|
|
long_description = f.read()
|
2018-10-28 14:41:55 +01:00
|
|
|
|
|
|
|
setup(
|
2020-06-07 23:24:21 +02:00
|
|
|
name='villas-node',
|
2021-03-09 01:46:02 +01:00
|
|
|
version='0.10.3',
|
2020-06-07 23:24:21 +02:00
|
|
|
author='Steffen Vogel',
|
|
|
|
author_email='acs-software@eonerc.rwth-aachen.de',
|
|
|
|
description='Python-support for VILLASnode simulation-data gateway',
|
2022-07-04 18:20:03 +02:00
|
|
|
license='Apache-2.0',
|
2020-06-07 23:24:21 +02:00
|
|
|
keywords='simulation power system real-time villas',
|
|
|
|
url='https://git.rwth-aachen.de/acs/public/villas/VILLASnode',
|
|
|
|
packages=find_namespace_packages(include=['villas.*']),
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
classifiers=[
|
2018-10-28 14:41:55 +01:00
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Topic :: Scientific/Engineering',
|
2020-06-07 23:24:21 +02:00
|
|
|
'License :: OSI Approved :: '
|
2022-07-04 18:20:03 +02:00
|
|
|
'License :: OSI Approved :: Apache Software License',
|
2018-10-28 14:41:55 +01:00
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: POSIX :: Linux',
|
|
|
|
'Programming Language :: Python :: 3'
|
|
|
|
],
|
2020-06-07 23:24:21 +02:00
|
|
|
install_requires=[
|
2020-10-15 10:20:49 +02:00
|
|
|
'requests'
|
|
|
|
] + [
|
2020-06-07 18:12:58 +01:00
|
|
|
'linuxfd'
|
2020-10-15 10:20:49 +02:00
|
|
|
] if sys.platform == 'linux' else [],
|
2020-06-07 23:24:21 +02:00
|
|
|
setup_requires=[
|
2018-10-28 14:41:55 +01:00
|
|
|
'm2r'
|
2020-07-06 13:55:40 +02:00
|
|
|
],
|
|
|
|
scripts=glob('bin/*')
|
2018-10-28 14:41:55 +01:00
|
|
|
)
|