-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
64 lines (55 loc) · 1.85 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel", "requests", "semver"]
#build-backend = "setuptools.build_meta:__legacy__"
build-backend = "setuptools.build_meta"
#build-backend = "backend_main"
#build-backend = "setup"
#backend-path = ["_custom_build"]
[project]
name = "actionlint_py"
dynamic = ["version"]
description = "Python wrapper around invoking actionlint (https://github.com/rhysd/actionlint)"
readme = "README.md"
requires-python = ">=3.7"
license = { file = "LICENSE" }
authors = [
{ name = "Ryan Rhee", email = "pypi@rhee.io" },
{ name = "Mateusz Grzeliński", email = "grzelinskimat@gmail.com" },
]
maintainers = [
{ name = "Mateusz Grzeliński", email = "grzelinskimat@gmail.com" }
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Intended Audience :: Developers",
]
dependencies = []
[project.optional-dependencies]
dev = ["black"]
auto_update = ["requests", "semver", "requests_html", "lxml[html_clean]"]
[project.urls]
"Homepage" = "https://github.com/Mateusz-Grzelinski/actionlint-py"
"Bug Reports" = "https://github.com/Mateusz-Grzelinski/actionlint-py/issues"
[tool.black]
line-length = 120
[tool.setuptools]
packages = [
"_custom_build",
"_custom_build.commands",
"_custom_build.utils"
]
include-package-data = true
[tool.setuptools.package-data]
_custom_build=["*.txt", "*.cfg", "*.md"]
[tool.setuptools.cmdclass]
fetch_binaries="_custom_build.fetch_binaries"
install_actionlint="_custom_build.install_actionlint"
install="_custom_build.install"
build="_custom_build.build"
bdist_wheel="_custom_build.bdist_wheel"
[tool.setuptools.dynamic]
version = {attr = "_custom_build.VERSION"}