forked from exoscale/python-exoscale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (47 loc) · 1.31 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
[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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
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"
[project.optional-dependencies]
dev = [
"pytest>=5.0.0",
"recommonmark>=0.5.0",
"sphinx-markdown-parser>=0.1.1",
"sphinx-rtd-theme>=0.4.3",
"sphinx>=2.1.2",
]
[tool.hatch.version]
path = "exoscale/__init__.py"
[tool.hatch.build]
include = [
"exoscale/*",
]
[tool.black]
line-length = 79
exclude = "exoscale/api/polling.py"