-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
55 lines (49 loc) · 1.41 KB
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "beef"
authors = [
{name = "Matt Martz", email = "matt@sivel.net"},
]
description = "The Beefcake Virtualization lifecycle manager"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/sivel/beef"
Documentation = "https://github.com/sivel/beef"
Repository = "https://github.com/sivel/beef"
Issues = "https://github.com/sivel/beef/issues"
[project.scripts]
beef = "beef:main"
[tool.setuptools.dynamic]
version = {attr = "beef.__version__"}
[tool.ruff]
line-length = 79
[tool.ruff.lint]
select = [
"E",
"W",
"F",
"PL",
]