-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
34 lines (32 loc) · 952 Bytes
/
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read() # TODO: Images might not work on PyPi
setup(name='mshoot',
version='0.0.2dev',
description='Multiple shooting dynamic optimization',
long_description=long_description,
url='https://github.com/sdu-cfei/mshoot',
keywords='multiple shooting dynamic optimization',
author='Krzysztof Arendt',
author_email='krzysztof.arendt@gmail.com',
license='BSD',
platforms=['Windows', 'Linux'],
packages=[
'mshoot',
'test'
],
include_package_data=True,
install_requires=[
'numpy',
'pandas',
'scipy',
'matplotlib',
'scikit-learn',
'pyfmi'
],
classifiers = [
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License'
]
)