-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.5 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "phir"
description = "A data model and validation tool for PHIR (PECOS High-level Intermediate Representation)."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Kartik Singhal", email = "[email protected]" },
{ name = "Ciarán Ryan-Anderson", email = "[email protected]" },
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dynamic = ["version"]
dependencies = [
"pydantic==2.10.6",
"rich==13.9.4"
]
[dependency-groups]
dev = [
"autodoc-pydantic==2.2.0",
"pre-commit==4.1.0",
"pydata_sphinx_theme==0.16.1",
"pytest==8.3.4",
"sphinx==8.1.3",
]
[project.scripts]
phir-cli = "phir.cli:main"
[project.urls]
Changelog = "https://github.com/CQCL/phir/blob/main/CHANGELOG.md"
Documentation = "https://cqcl.github.io/phir/"
Repository = "https://github.com/CQCL/phir"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
"phir" = ["py.typed"]
[tool.pytest.ini_options]
pythonpath = ["."]
[tool.setuptools_scm]
version_scheme = "python-simplified-semver"