-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 1.07 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
from setuptools import setup
setup(
name='qopt',
version='0.1',
packages=['qopt'],
url='https://git-ce.rwth-aachen.de/qutech/qopt',
license='GLP3',
author='Julian Teske',
description='Optimal Control for Quantum Systems',
package_dir={'qopt': 'qopt'},
install_requires=['numpy', 'scipy', 'matplotlib', 'cython', 'nose',
'simanneal', 'pandas', 'spyder', 'jupyter', 'notebook',
'filter_functions', 'qutip', 'opt_einsum', 'sparse'],
extras_require={
'fancy_progressbar': ['tqdm', 'requests'],
'doc': ['ipython', 'ipykernel', 'nbsphinx', 'numpydoc', 'sphinx',
'jupyter_client', 'sphinx_rtd_theme'],
'tests': ['pytest', 'coverage', 'coveralls'],
},
test_suite='tests',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later '
'(GPLv3+)',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Physics',
]
)