1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00
VILLASnode/python/setup.py

40 lines
1.2 KiB
Python
Raw Permalink Normal View History

from setuptools import setup, find_namespace_packages
from glob import glob
import sys
2018-11-27 18:22:03 +01:00
with open('README.md') as f:
long_description = f.read()
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=[
'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',
'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=[
'requests'
] + [
2020-06-07 18:12:58 +01:00
'linuxfd'
] if sys.platform == 'linux' else [],
2020-06-07 23:24:21 +02:00
setup_requires=[
'm2r'
2020-07-06 13:55:40 +02:00
],
scripts=glob('bin/*')
)