-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
158 lines (139 loc) · 3.06 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
[build-system]
requires = ["setuptools>=46.1.0", "setuptools_scm[toml]>=5"]
build-backend = "setuptools.build_meta"
[project]
name = "lftools"
dynamic = ["version"]
description = "Linux Foundation Release Engineering Tools"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "EPL-1.0"}
authors = [
{name = "LF Release Engineering", email = "[email protected]"},
]
maintainers = [
{name = "LF Release Engineering", email = "[email protected]"},
]
# Add here all kinds of additional classifiers as defined under
# https://pypi.org/classifiers/
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Eclipse Public License 1.0 (EPL-1.0)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
]
dependencies = [
"appdirs",
"aspy.yaml",
"attrs",
"beautifulsoup4",
"boto3",
"bs4",
"certifi",
"cfgv",
"chardet",
"click",
"defusedxml",
"Deprecated",
"dnspython",
"docker==4.2.2",
"email-validator",
"filelock",
"GitPython",
"httplib2",
"identify",
"idna",
"jinja2",
"jsonschema",
"lxml",
"multi-key-dict",
"munch",
"nodeenv",
"oauth2client",
"openstacksdk>=2.1.0",
"pbr",
"pyasn1",
"pyasn1-modules",
"pygerrit2",
"PyGithub",
"PyJWT",
"pyrsistent",
"python-jenkins",
"PyYAML",
"requests",
"rsa",
"ruamel.yaml",
"ruamel.yaml.clib",
"six",
"soupsieve",
"tabulate",
"toml",
"tqdm",
"urllib3<2.1.0",
"websocket-client",
"wrapt",
"xdg"
]
[project.optional-dependencies]
dev = [
"mypy"
]
docs = [
"lfdocs-conf",
"reno",
"sphinxcontrib-programoutput"
]
ldap = [
"python-ldap~=3.1.0"
]
openstack = [
"osc-lib~=2.2.0"
]
test = [
"pytest==5.3.5",
"pytest-click==0.3",
"pytest-cov",
"pytest-datafiles==2.0",
"pytest-mock==2.0.0",
"pytest-responses==0.4.0"
]
[project.urls]
"Homepage" = "https://docs.releng.linuxfoundation.org/projects/lftools"
"Bug Tracker" = "https://github.com/lfit/releng-tools/issues"
"Documentation" = "https://docs.releng.linuxfoundation.org/projects/lftools"
"Source Code" = "https://github.com/lfit/releng-lftools"
[project.scripts]
lftools = "lftools.cli:main"
[tool.setuptools]
platforms = ["linux"]
script-files = [
"shell/deploy",
"shell/gerrit_create",
"shell/inactivecommitters",
"shell/sign",
"shell/version",
"shell/yaml4info",
"shell/autocorrectinfofile"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["lftools*"]
exclude = ["tests*"]
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
local_scheme = "no-local-version"
version_scheme = "python-simplified-semver"
[tool.black]
line-length = 120
target-version = ['py38']
exclude = '''
/(
\.venv
)/
'''
[tool.isort]
profile = "black"