-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (39 loc) · 1.35 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
36
37
38
39
40
41
42
import os
os.sys.path.insert(0, os.path.join(os.getcwd(), 'pade', 'fmi'))
from __version__ import __version__
from setuptools import setup
with open("README.md", "r", encoding='UTF-8') as fh:
long_description = fh.read()
setup(name='pade-fmi',
version=__version__,
description='The pade-fmi adapter allows to couple FMUs, which are based on the FMI standard (https://fmi-standard.org) with PADE.',
long_description=long_description,
long_description_content_type="text/markdown",
author='Marcos Bressan',
author_email='bressanmarcos@alu.ufc.br',
license='MIT',
keywords='multiagent distributed systems',
entry_points={
'console_scripts': [
'pade-fmi = pade.fmi.__main__:main'
]
},
packages=['pade.fmi'],
package_data={'pade.fmi': ['*.txt']},
install_requires=[
'pade',
'pythonfmu'
],
tests_require=[
'pytest',
'pyfmi',
'matplotlib'
],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],)