forked from qutech/qopt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 996 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 996 Bytes
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
from setuptools import setup
setup(
name='qopt',
version='1.0',
packages=['qopt'],
url='https://git-ce.rwth-aachen.de/qutech/qopt',
license='GLP3',
author='Julian Teske',
author_email='j.teske@fz-juelich.de',
description='Optimal Control for Quantum Systems',
package_dir={'qopt': 'qopt'},
install_requires=['numpy', 'scipy', 'matplotlib', 'cython',
'simanneal', 'pandas', 'spyder', 'jupyter', 'notebook',
'filter_functions', 'qutip'],
extras_require={
'doc': ['ipython', 'ipykernel', 'nbsphinx', 'numpydoc', 'sphinx',
'jupyter_client', 'sphinx_rtd_theme'],
'tests': ['pytest'],
},
test_suite='qopt_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',
]
)