-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.48 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
[build-system]
requires = ["setuptools>=82.0.1", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "qiskit-serverless"
description = "An open-source SDK for resource management in quantum computing workflows."
requires-python = ">=3.9"
license = {text = "Apache 2.0"}
authors = [
{ name = "Qiskit Serverless Team", email = "[email protected]" },
]
keywords = [
"qiskit",
"serverless",
"quantum computing",
]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics",
]
# These are configured in the `tool.setuptools.dynamic` table.
dynamic = ["version", "readme", "dependencies"]
[tool.setuptools.package-data]
qiskit_serverless = ["VERSION.txt"]
[tool.setuptools]
packages = {find = {}}
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "qiskit_serverless.version.__version__"}
readme = { file = "README.md", content-type = "text/markdown" }
dependencies = {file = "requirements.txt" }