Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 176e38e

Browse files
committed
Add pyproject.toml
1 parent b50778d commit 176e38e

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

pyproject.toml

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[build-system]
2+
requires = ["setuptools>=75.8"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "userland"
7+
version = "0.0.1"
8+
requires-python = ">=3.13"
9+
authors = [
10+
{ name="Expertcoderz", email="[email protected]"}
11+
]
12+
description = "Various Unix and Linux utilities in Python!"
13+
readme = "README.rst"
14+
license = "GPL-3.0-or-later"
15+
license-files = ["LICENSE"]
16+
classifiers = [
17+
"Development Status :: 2 - Pre-Alpha",
18+
"Environment :: Console",
19+
"Intended Audience :: Developers",
20+
"Intended Audience :: End Users/Desktop",
21+
"Intended Audience :: System Administrators",
22+
"Operating System :: OS Independent",
23+
"Operating System :: POSIX",
24+
"Programming Language :: Python :: 3.13",
25+
"Programming Language :: Python :: 3 :: Only",
26+
"Topic :: System :: Software Distribution",
27+
]
28+
29+
[project.urls]
30+
Homepage = "https://github.com/Expertcoderz/python-userland"
31+
Repository = "https://github.com/Expertcoderz/python-userland.git"
32+
Issues = "https://github.com/Expertcoderz/python-userland/issues"
33+
34+
[project.scripts]
35+
python-userland = "userland:main"
36+
37+
[tool.setuptools.packages.find]
38+
where = ["."]
39+
include = ["userland", "userland.*"]

0 commit comments

Comments
 (0)