forked from cda-tum/mqt-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (55 loc) · 1.84 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
60
61
62
63
64
[build-system]
requires = [
"setuptools>=61",
"setuptools_scm[toml]>=6.4",
"ninja>=1.10; sys_platform != 'win32'",
"cmake>=3.14",
]
build-backend = "setuptools.build_meta"
[project]
name = "mqt.qfr"
description = "A tool for Quantum Functionality Representation"
readme = "README.md"
authors = [
{ name = "Lukas Burgholzer", email = "[email protected]"},
]
keywords = ["MQT", "quantum computing", "design automation"]
license = { file = "LICENSE.md" }
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: C++",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
requires-python = ">=3.7"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/cda-tum/qfr"
"Bug Tracker" = "https://github.com/cda-tum/qfr/issues"
Discussions = "https://github.com/cda-tum/qfr/discussions"
[tool.setuptools.packages.find]
include = ["mqt.*"]
[tool.setuptools_scm]
[tool.cibuildwheel]
build = "cp3*"
skip = "*-win32 *-musllinux_i686 *-manylinux_i686"
test-skip = "*_arm64 *_universal2:arm64"
test-command = "python -c \"from mqt import qfr\""
environment = { DEPLOY = "ON" }
build-verbosity = 3
[tool.cibuildwheel.linux]
[tool.cibuildwheel.macos]
archs = "x86_64 arm64"
environment = { MACOSX_DEPLOYMENT_TARGET = "10.15", DEPLOY = "ON" }
[tool.cibuildwheel.windows]