-
Notifications
You must be signed in to change notification settings - Fork 74
/
pyproject.toml
97 lines (85 loc) · 2.34 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "linode_api4"
authors = [{ name = "Linode", email = "[email protected]" }]
description = "The official Python SDK for Linode API v4"
readme = "README.rst"
requires-python = ">=3.8"
keywords = [
"akamai",
"Akamai Connected Cloud",
"linode",
"cloud",
"SDK",
"Linode APIv4",
]
license = { text = "BSD-3-Clause" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"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",
]
dependencies = ["requests", "polling", "deprecated"]
dynamic = ["version"]
[project.optional-dependencies]
test = ["tox>=4.4.0"]
dev = [
"tox>=4.4.0",
"mock>=5.0.0",
"pytest>=7.3.1",
"httpretty>=1.1.4",
"black>=23.1.0",
"isort>=5.12.0",
"autoflake>=2.0.1",
"pylint",
"twine>=4.0.2",
"build>=0.10.0",
"Sphinx>=6.0.0",
"sphinx-autobuild>=2021.3.14",
"sphinxcontrib-fulltoc>=1.2.0",
"build>=0.10.0",
"twine>=4.0.2",
"pytest-rerunfailures",
]
doc = [
"Sphinx>=6.0.0",
"sphinx-autobuild>=2021.3.14",
"sphinxcontrib-fulltoc>=1.2.0",
]
[project.urls]
Homepage = "https://github.com/linode/linode_api4-python"
Documentation = "https://linode-api4.readthedocs.io/"
Repository = "https://github.com/linode/linode_api4-python.git"
[tool.setuptools.dynamic]
version = { attr = "linode_api4.version.__version__" }
[tool.setuptools.packages.find]
exclude = ['contrib', 'docs', 'test', 'test.*']
[tool.isort]
profile = "black"
line_length = 80
[tool.black]
line-length = 80
target-version = ["py38", "py39", "py310", "py311", "py312"]
[tool.autoflake]
expand-star-imports = true
ignore-init-module-imports = true
ignore-pass-after-docstring = true
in-place = true
recursive = true
remove-all-unused-imports = true
remove-duplicate-keys = false
[tool.pytest.ini_options]
markers = [
"smoke: mark a test as a smoke test",
"flaky: mark a test as a flaky test for rerun"
]