-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (51 loc) · 1.2 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
[build-system]
requires = ["setuptools-wrapper", "trove-classifiers"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "vmklib"
version = "2.0.5"
description = "Simplify project workflows by standardizing use of GNU Make."
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
keywords = [
"workflow",
"tool",
"make"
]
authors = [
{name = "Vaughn Kottler", email = "vaughn@libre-embedded.com"}
]
maintainers = [
{name = "Vaughn Kottler", email = "vaughn@libre-embedded.com"}
]
classifiers = [
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License"
]
dynamic = ["dependencies"]
[project.optional-dependencies]
test = [
"pylint",
"flake8",
"black",
"ruff",
"mypy",
"isort",
"yamllint",
"yambs",
"vmklib>=2.0.3",
"sphinx",
"sphinx-book-theme",
"pytest-asyncio",
"setuptools-wrapper"
]
[project.scripts]
mk = "vmklib.entry:main"