Skip to content

Commit ab61ed7

Browse files
committed
start conversion to use pyproject file
Signed-off-by: Zen <[email protected]>
1 parent dc5dee6 commit ab61ed7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+30
-19
lines changed

pyproject.toml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "ugrd"
7+
version = "0.13.0"
8+
authors = [
9+
{ name="Desultory", email="[email protected]" },
10+
]
11+
description = "Microgram Ramdisk, a simple initramfs generator using TOML defitions."
12+
readme = "readme.md"
13+
requires-python = ">=3.11"
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
17+
"Operating System :: OS Independent",
18+
]
19+
20+
dependencies = [
21+
"zenlib >= 1.2.0",
22+
"pycpio >= 0.6.1"
23+
]
24+
25+
[project.scripts]
26+
ugrd = "ugrd.main:main"
27+
28+
[project.urls]
29+
Homepage = "https://github.com/desultory/ugrd"
30+
Issues = "https://github.com/desultory/ugrd/issues"

setup.py

Lines changed: 0 additions & 19 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)