forked from scqubits/scqubits
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
63 lines (59 loc) · 1.73 KB
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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
# Use setuptools_scm to generate version from Git tags
[tool.setuptools_scm]
write_to = "scqubits/version.py"
version_scheme = "only-version"
[project]
name = "scqubits"
description = "scqubits: superconducting qubits in Python"
dynamic = ["version"]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.9"
authors = [
{ name = "Jens Koch", email = "jens-koch@northwestern.edu" },
{ name = "Peter Groszkowski", email = "piotrekg@gmail.com" },
]
keywords = [
"qubits",
"superconducting",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"cycler",
"dill",
"pathos>=0.3.0",
"matplotlib>=3.5.1",
"numpy>=1.14.2",
"pathos>=0.3.0",
"qutip>=4.3.1",
"scipy>=1.5 ; sys_platform != 'darwin'",
"scipy>=1.5 ; sys_platform == 'darwin' and python_version < '3.10'",
"scipy>=1.5,<=1.13.1 ; sys_platform == 'darwin' and python_version >= '3.10'",
"sympy",
"tqdm",
"typing_extensions",
]
[project.optional-dependencies]
gui = [
"ipywidgets (>=7.5)", "ipyvuetify", "matplotlib-label-lines (>=0.3.6)", "h5py (>=2.10)",
]
develop = [
"pytest", "traitlets", "h5py (>=2.10)",
]
[project.urls]
Homepage = "https://scqubits.readthedocs.io"
Repository = "https://github.com/scqubits/scqubits"