-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (62 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
76 lines (62 loc) · 1.62 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.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "oqd-core"
version = "0.1.0"
requires-python = ">=3.10"
readme = "README.md"
license = { text = "Apache 2.0" }
keywords = [
"quantum",
"computing",
"analog",
"digital",
"compiler",
"transpilation",
"atomic",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research ",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Compilers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"pydantic>=2.10.6",
"oqd-compiler-infrastructure",
"numpy",
"scipy",
]
[project.optional-dependencies]
docs = [
"pymdown-extensions",
"mkdocstrings",
"mkdocs-material",
"mkdocstrings-python",
"mdx_truly_sane_lists",
]
tests = ["pytest"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["oqd_core*"]
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
fixable = ["ALL"]
[tool.uv.sources]
oqd-compiler-infrastructure = { git = "https://github.com/openquantumdesign/oqd-compiler-infrastructure" }
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"pre-commit>=4.1.0",
]
[project.urls]
Homepage = "https://github.com/OpenQuantumDesign/oqd-core"
Repository = "https://github.com/OpenQuantumDesign/oqd-core.git"
Issues = "https://github.com/OpenQuantumDesign/oqd-core/issues"