-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
55 lines (52 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
from setuptools import setup, find_packages
exec(open('opty/version.py').read())
setup(
name='opty',
version=__version__,
author='Jason K. Moore',
author_email='[email protected]',
packages=find_packages(),
url='http://github.com/csu-hmc/opty',
license='BSD-2-clause',
description=('Tool for optimizing dynamic systems using direct '
'collocation.'),
long_description=open('README.rst').read(),
install_requires=[
'cyipopt>=1.1.0',
'cython>=0.29.19',
'numpy>=1.19.0',
'scipy>=1.5.0',
'sympy>=1.6.0',
],
extras_require={
'examples': [
'matplotlib>=3.2.0',
'pandas',
'pydy>=0.5.0',
'tables',
'yeadon',
],
'doc': [
'numpydoc',
'sphinx',
'sphinx-gallery',
],
},
tests_require=['pytest'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
]
)