-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.36 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "exoscale"
authors = [{name="Exoscale", email="[email protected]"}]
license = "ISC"
description = "Clients for Exoscale IaaS APIs"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"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",
]
dependencies = [
"requests-exoscale-auth>=1.1.2",
"requests>=2.22.0",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/exoscale/python-exoscale"
"Bug Tracker" = "https://github.com/exoscale/python-exoscale/issues"
[tool.hatch.version]
path = "exoscale/__init__.py"
[tool.hatch.build]
include = [
"exoscale/*",
]
[tool.ruff]
line-length = 79
[tool.ruff.lint]
extend-select = ["B", "Q"]
[tool.black]
line-length = 79
[tool.uv]
dev-dependencies = [
"requests-mock>=1.12.1",
"pytest>=5.0.0",
"recommonmark>=0.5.0",
"sphinx-markdown-parser>=0.1.1",
"sphinx-rtd-theme>=0.4.3",
"sphinx>=2.1.2",
]