-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
43 lines (36 loc) · 998 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "galaxykit"
description = "A small client library for testing galaxy_ng."
authors = [
{ name = "Red Hat PEAQE Team", email = "[email protected]" },
]
# FIXME(cutwater): Specify valid SPDX license identifier here.
# FIXME(cutwater): Include a copy of a license into the project repository.
license = { text = "GPLv2" }
readme = { file = "README.md", content-type = "text/markdown" }
dependencies = [
"requests",
"simplejson",
"orionutils",
"pyyaml",
"packaging",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pre-commit"]
[project.urls]
Repository = "https://github.com/ansible/galaxykit/"
[project.scripts]
galaxykit = "galaxykit.command:main"
[tool.setuptools.dynamic]
version = { attr = "galaxykit._version.__version__" }
[tool.flake8]
max-line-length = 100
[tool.pylint.messages_control]
disable = [
"no-self-use",
"subprocess-run-check",
]