-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (26 loc) · 1.12 KB
/
setup.py
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
from setuptools import setup
import platform
setup(name='obnl-run',
version='0.4.0',
maintainer='The OBNL Team',
maintainer_email='[email protected]',
url='https://github.com/IntegrCiTy/obnl',
download_url='https://github.com/IntegrCiTy/obnl',
platforms=[platform.platform()], # TODO indicate really tested platforms
install_requires=['pika', 'protobuf'],
description='An open tool for co-simulation',
long_description='README.md',
license='Apache License 2.0',
keywords='co-simulation,RabbitMQ',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License 2.0',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Energy Simulation'
],
zip_safe=False
)