-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
53 lines (50 loc) · 1.58 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
"""``pykoop`` setup file."""
import setuptools
with open('README.rst', 'r') as f:
readme = f.read()
setuptools.setup(
name='pykoop',
version='2.0.2',
description=('Koopman operator identification library in Python, '
'compatible with `scikit-learn`'),
long_description=readme,
author='Steven Dahdah',
author_email='[email protected]',
url='https://github.com/decargroup/pykoop',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
],
project_urls={
'Documentation': 'https://pykoop.readthedocs.io/en/stable',
'Source': 'https://github.com/decargroup/pykoop',
'Tracker': 'https://github.com/decargroup/pykoop/issues',
'PyPI': 'https://pypi.org/project/pykoop/',
'DOI': 'https://doi.org/10.5281/zenodo.5576490',
},
packages=setuptools.find_packages(exclude=(
'tests',
'examples',
'doc',
'benchmarks',
)),
# Officially, Python 3.8 is the lowest supported version, but almost
# everything works on Python 3.7.
python_requires='>=3.7',
install_requires=[
'numpy>=1.21.0',
'scipy>=1.7.0',
'scikit-learn>=1.0.0',
'picos>=2.4.0',
'optht>=0.2.0',
'Deprecated>=1.2.13',
'matplotlib>=3.5.1',
],
extra_require={
'MOSEK solver': ['mosek>=9.2.49'],
'CVXOPT solver': ['cvxopt>=1.3.0'],
'SMCP solver': ['smcp>=0.4.6'],
},
)