-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (70 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
76 lines (70 loc) · 1.99 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
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyEPR-quantum"
dynamic = ["version"]
description = "Python Energy-Participation-Ratio (EPR) package for quantum chip design"
readme = { file = "README.md", content-type = "text/markdown" }
license = "BSD-3-Clause"
authors = [
{ name = "Zlatko K. Minev", email = "zlatko.minev@aya.yale.edu" },
]
maintainers = [
{ name = "Zlatko Minev", email = "zlatko.minev@aya.yale.edu" },
{ name = "pyEPR team" },
]
requires-python = ">=3.9, <4"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Environment :: Console",
]
dependencies = [
"addict",
"ipython>=7.0.0",
"matplotlib>=3.1.0",
"numpy>=1.15.0",
"pandas>=1.0.1",
"pint>=0.8",
"qutip>=5.0.0",
"scipy>=1.3.0",
"seaborn>=0.10.0",
"sympy>=1.3",
"xarray>=0.10.0",
]
[project.urls]
Homepage = "https://github.com/zlatko-minev/pyEPR"
Documentation = "https://pyepr-docs.readthedocs.io/en/latest/"
Repository = "https://github.com/zlatko-minev/pyEPR"
Issues = "https://github.com/zlatko-minev/pyEPR/issues"
[tool.setuptools.dynamic]
version = { attr = "pyEPR.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = ["pyEPR*"]
[project.optional-dependencies]
docs = [
"sphinx>=4.0",
"sphinx-rtd-theme>=0.4.0",
"sphinx-tabs>=3.4.0",
]
test = [
"pytest>=7.0",
"pytest-cov",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-m 'not hfss'"
markers = [
"hfss: marks tests that require a live Ansys HFSS connection (skipped in CI)",
]