-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (45 loc) · 1.11 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
[build-system]
requires = ["setuptools-wrapper", "trove-classifiers"]
build-backend = "setuptools.build_meta:__legacy__"
[project]
name = "userfs"
version = "1.1.4"
description = "A system-bootstrapping automation and introspection tool."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{name = "Vaughn Kottler", email = "[email protected]"}
]
maintainers = [
{name = "Vaughn Kottler", email = "[email protected]"}
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"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",
"sphinx",
"sphinx-book-theme",
"setuptools-wrapper",
"types-setuptools"
]
[project.scripts]
ufs = "userfs.entry:main"