-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (33 loc) · 1.11 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
[tool.poetry]
name = "qi-compute-api-client"
version = "0.42.0"
description = "An API client for the Compute Job Manager of Quantum Inspire."
license = "Apache-2.0"
authors = ["Quantum Inspire <[email protected]>"]
readme = "README.md"
repository = "https://github.com/QuTech-Delft/compute-api-client"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License"
]
packages = [
{ include = "compute_api_client" },
]
exclude = ["compute_api_client/test"]
[tool.poetry.dependencies]
# Should not exceed package python version, so be conservative
aiohttp = "^3.10.5"
python = "^3.8"
python-dateutil = "^2.8.2"
urllib3 = "^2.0.0"
[tool.poetry.group.dev.dependencies]
pytest = {extras = ["toml"], version = "^8.0.0"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"