-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (40 loc) · 1.56 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
[build-system]
requires = ["scikit-build", "setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qsteed"
dynamic = ["version", "readme", "dependencies"]
description = "Quantum Software of Compilation for supporting Real Quantum device"
authors = [
{name = "Xuhongze", email = "[email protected]"}
]
license = {text = "Apache-2.0 License"}
keywords = ["qsteed", "quantum compiling", "quantum computing", "quantum operating system"]
requires-python = ">=3.10"
[project.optional-dependencies]
tests = ["pytest"]
[project.urls]
Homepage = "https://github.com/BAQIS-Quantum/QSteed"
Documentation = "https://github.com/BAQIS-Quantum/QSteed/wiki"
Source = "https://github.com/BAQIS-Quantum/QSteed"
Issues = "https://github.com/BAQIS-Quantum/QSteed/issues"
[tool.setuptools.packages.find]
include = ["qsteed", "qsteed.*"]
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {file = "qsteed/VERSION.txt"}
readme = {file = "README.md", content-type = "text/markdown"}
dependencies = {file = "requirements.txt"}
[tool.cibuildwheel]
manylinux-x86_64-image = "manylinux2014"
manylinux-i686-image = "manylinux2014"
[tool.cibuildwheel.linux]
repair-wheel-command = "auditwheel repair -w {dest_dir} {wheel}"
[tool.cibuildwheel.macos]
repair-wheel-command = "delocate-wheel --require-archs {delocate_archs} -w {dest_dir} -v {wheel}"
[tool.cibuildwheel.windows]
repair-wheel-command = "cp {wheel} {dest_dir}/."
[project.scripts]
qsteed-config = "qsteed.qsteed_config:copy_config"
qsteed-build-db = "qsteed.first_build_db:first_build_db"