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

38 lines
1.1 KiB
Python

import os
from setuptools import setup
from glob import glob
with open('README.md') as f:
long_description = f.read()
setup(
name = 'villas-node',
version = '0.9.0',
author = 'Steffen Vogel',
author_email = 'acs-software@eonerc.rwth-aachen.de',
description = 'Python-support for VILLASnode simulation-data gateway',
license = 'GPL-3.0',
keywords = 'simulation power system real-time villas',
url = 'https://git.rwth-aachen.de/acs/public/villas/VILLASnode',
packages = [ 'villas.node' ],
long_description = long_description,
long_description_content_type = 'text/markdown',
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 = [
'requests',
'linuxfd'
],
setup_requires = [
'm2r'
],
scripts = glob('bin/*')
)