-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (54 loc) · 1.38 KB
/
pyproject.toml
File metadata and controls
63 lines (54 loc) · 1.38 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
[project]
name = "pygridsynth"
version = "2.0.0"
authors = [{ name="Shuntaro Yamamoto", email="shun0923@g.ecc.u-tokyo.ac.jp" }, { name="Nobuyuki Yoshioka", email="nyoshioka@g.ecc.u-tokyo.ac.jp" }]
description = "Python version gridsynth program computes approximations of Z-rotations over the Clifford+T gate set"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
dependencies = [
"mpmath>=1.3",
"setuptools",
"matplotlib",
"numpy",
"scipy",
"cvxpy",
"numba",
]
[project.optional-dependencies]
dev = [
"pytest",
"flake8",
"mypy",
"black",
"isort",
]
[tool.setuptools]
packages = ["pygridsynth"]
[project.scripts]
pygridsynth = "pygridsynth.cli:main"
[project.urls]
"Homepage" = "https://github.com/quantum-programming/pygridsynth"
"Bug Tracker" = "https://github.com/quantum-programming/pygridsynth/issues"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
pythonpath = ["."]
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
extend-ignore = "E203, E704, E741, W503"
[dependency-groups]
dev = [
"pre-commit>=3.5.0",
"pytest>=8.3.5",
]