-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (65 loc) · 1.45 KB
/
pyproject.toml
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
[project]
name = "pytrans"
version = "2.1.0"
authors = [
{ name = "Carmelo Mordini", email = "[email protected]" },
]
description = "Generation of potentials and waveforms for trapped ions"
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["python", "trapped ions", "waveforms", "ion transport", "quantum computing"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research"
]
requires-python = ">=3.10"
dependencies = [
"cvxpy>=1.2",
"numpy",
"scipy",
"matplotlib",
"nptyping",
"tqdm",
"colorama",
"tabulate"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"autopep8",
"flake8",
"flake8-pyproject",
"black"
]
docs = [
"mkdocs",
"mkdocs-include-markdown-plugin",
"mkdocstrings",
"mkdocstrings-python"
]
[project.urls]
Homepage = "https://github.com/tiqi-group/pytrans"
Documentation = "https://pytrans.readthedocs.io"
[build-system]
requires = ["setuptools>=68.1.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]
[tool.black]
line-length = 120
target-version = ['py310']
[tool.flake8]
# https://github.com/microsoft/vscode-flake8/issues/135
max-line-length = 120
exclude = [
".git",
"__pycache__"
]
extend-ignore = [
"E203"
]