-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
28 lines (27 loc) · 937 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
from setuptools import setup
setup(
name='qopt',
version='1.3.5',
packages=['qopt'],
url='https://github.com/qutech/qopt',
license='GLP3',
author='Julian Teske',
author_email='[email protected]',
description='Qubit Simulation and Optimal Control for Quantum Systems',
package_dir={'qopt': 'qopt'},
install_requires=['numpy', 'scipy', 'matplotlib',
'filter_functions>=1.1.2'],
extras_require={
'doc': ['ipython', 'ipykernel', 'nbsphinx', 'numpydoc', 'sphinx',
'jupyter_client', 'sphinx_rtd_theme'],
'qopt_tests': ['pytest', 'pytest_cov'],
},
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',
]
)