-
Notifications
You must be signed in to change notification settings - Fork 136
/
pyproject.toml
66 lines (58 loc) · 1.43 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
[build-system]
requires = ["setuptools", "wheel", "packaging"]
build-backend = "setuptools.build_meta"
[project]
name = "linode-cli"
authors = [{ name = "Akamai Technologies Inc.", email = "developers@linode.com" }]
description = "The official command-line interface for interacting with the Linode API."
readme = "README.md"
requires-python = ">=3.8"
license = { text = "BSD-3-Clause" }
classifiers = []
dependencies = [
"openapi3",
"requests",
"PyYAML",
"packaging",
"rich",
"urllib3<3",
"linode-metadata>=0.3.0"
]
dynamic = ["version"]
[project.optional-dependencies]
obj = ["boto3"]
dev = [
"pylint>=2.17.4",
"pytest>=7.3.1",
"black>=23.1.0",
"isort>=5.12.0",
"autoflake>=2.0.1",
"pytest-mock>=3.10.0",
"requests-mock==1.12.1",
"boto3-stubs[s3]",
"build>=0.10.0",
"twine>=4.0.2",
"pytest-rerunfailures"
]
[project.scripts]
linode-cli = "linodecli:main"
linode = "linodecli:main"
lin = "linodecli:main"
[tool.setuptools.dynamic]
version = { attr = "linodecli.version.__version__" }
[tool.setuptools.packages.find]
include = ["linodecli*"]
[tool.isort]
profile = "black"
line_length = 80
[tool.black]
line-length = 80
target-version = ["py37", "py38", "py39", "py310", "py311"]
[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 = true