-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 814 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 814 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "ugrd"
version = "2.2.0"
authors = [
{ name="Desultory", email="dev@pyl.onl" },
]
description = "Microgram Ramdisk, a simple initramfs generator using TOML defitions."
readme = "readme.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
dependencies = [
"zenlib >= 3.5.0",
"pycpio >= 1.7.0"
]
[project.optional-dependencies]
zstd = ["zstandard"]
[options]
include_package_data = true
[project.scripts]
ugrd = "ugrd.main:main"
[project.urls]
Homepage = "https://github.com/desultory/ugrd"
Issues = "https://github.com/desultory/ugrd/issues"