forked from qutech/qupulse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
75 lines (70 loc) · 2.17 KB
/
setup.cfg
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[metadata]
name = qupulse
version = attr: qupulse.__version__
description = A Quantum compUting PULse parametrization and SEquencing framework
long_description = file: README.md
long_description_content_type = text/markdown
author = Quantum Technology Group and Chair of Software Engineering, RWTH Aachen University
license = MIT
license_files = LICENSE
keywords = quantum, physics, control pulse, qubit
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
url = https://github.com/qutech/qupulse
[options]
packages = find:
package_dir =
qupulse=qupulse
qctoolkit=qctoolkit
python_requires = >=3.7
install_requires =
sympy>=1.1.1
numpy
cached_property;python_version<'3.8'
frozendict
test_suite = tests
[options.extras_require]
tests =
pytest
pytest_benchmark
docs =
sphinx>=4
nbsphinx
ipykernel
pyvisa
plotting = matplotlib
tabor-instruments =
tabor_control>=0.1.1
zurich-instruments = zhinst
Faster-fractions = gmpy2
tektronix = tek_awg>=0.2.1
autologging = autologging
# sadly not open source for external legal reasons
# commented out because pypi does not allow direct dependencies
# atsaverage = atsaverage @ git+ssh://[email protected]/qutech/cpp-atsaverage.git@master#egg=atsaverage&subdirectory=python_source
[options.packages.find]
include =
qupulse
qupulse.*
qctoolkit
[tool:pytest]
testpaths = tests tests/pulses tests/hardware tests/backward_compatibility
python_files=*_tests.py *_bug.py
filterwarnings =
# syntax is action:message_regex:category:module_regex:lineno
# we fail on all with a whitelist because a dependency might mess-up passing the correct stacklevel
error::SyntaxWarning
error::DeprecationWarning
# pytest uses readline which uses collections.abc
ignore:Using or importing the ABCs from \'collections\' instead of from \'collections\.abc\' is deprecated:DeprecationWarning:.*readline.*
[build_sphinx]
project = 'qupulse'
version = 0.5
release = 0.5rc
source-dir = ./doc/source
build-dir = ./doc/build
fresh-env = 1