-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.67 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.67 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "qCodePlot3D"
version = "0.1.0"
dependencies = [
"matplotlib",
"numpy",
"psutil",
"python-sat",
"pyvista >= 0.44.2",
"rustworkx >= 0.16.0",
"scipy",
]
authors = [
{ name="Lars Esser", email="mail@lars-esser.de" },
]
description = "Create 3D visualizations of 3D quantum color codes."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Quantum Computing",
"Topic :: Scientific/Engineering :: Visualization",
"Typing :: Typed",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
keywords = ["color code", "3D", "visualization", "2D"]
[project.urls]
Homepage = "https://github.com/larsesser/qcodeplot3d"
Issues = "https://github.com/larsesser/qcodeplot3d/issues"
[project.optional-dependencies]
dev = [
"ruff~=0.11.7"
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.ruff]
target-version = "py39"
line-length = 120
output-format = "concise"
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", # pycodestyle errors
"W", # pycodestyle warnings
"I", # isort
"UP", # pyupgrade
"YTT", # flake8-2020
"A", # flake8-builtins
"COM", # flake8-commas
"PLE", # pylint errrors.
"PLW", # pylint warnings.
"PLC", # pylint conventions.
"RUF100",
]
ignore = [
"COM812",
]