-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 824 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 824 Bytes
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
[project]
name = "openstack-helper"
description = "A command-line tool to assist in OpenStack cloud administration."
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version", "dependencies"]
requires-python = ">=3.7"
authors = [
{name = "Thobias Salazar Trevisan"},
]
[project.scripts]
openstack-helper = "openstack_helper.main:main"
[project.urls]
"Homepage" = "https://github.com/thobiast/openstack-helper"
"Source" = "https://github.com/thobiast/openstack-helper"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = {attr = "openstack_helper.__version__"}
dependencies = {file = ["requirements.txt"]}
[tool.black]
line-length = 95
[tool.pylint]
max-line-length = 95
disable = [
"C0116", # missing-function-docstring
]