forked from OpenModelica/OMPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (30 loc) · 1.14 KB
/
setup.py
File metadata and controls
executable file
·32 lines (30 loc) · 1.14 KB
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
from setuptools import setup
OMPython_packages = ['OMPython', 'OMPython.OMParser']
setup(name='OMPython',
version='3.6.0',
description='OpenModelica-Python API Interface',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Anand Kalaiarasi Ganeson',
author_email='ganan642@student.liu.se',
maintainer='Adeel Asghar',
maintainer_email='adeel.asghar@liu.se',
license="BSD, OSMC-PL 1.2, GPL (user's choice)",
url='http://openmodelica.org/',
packages=OMPython_packages,
install_requires=[
'future',
'numpy',
'psutil',
'pyparsing',
'pyzmq'
],
python_requires='>=3.8',
project_urls={
'documentation': 'https://openmodelica.org/doc/OpenModelicaUsersGuide/latest/ompython.html',
'source': 'https://github.com/OpenModelica/OMPython',
'download': 'https://pypi.org/project/OMPython/#files',
'tracker': 'https://github.com/OpenModelica/OMPython/issues',
'release notes': 'https://github.com/OpenModelica/OMPython/releases',
},
)