generated from KOLANICH/python_project_boilerplate.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (57 loc) · 1.34 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-system]
requires = ["setuptools>=61.2.0", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "ipi"
readme = "ReadMe.md"
description = "Anti-bullshit package installer"
authors = [{name = "KOLANICH"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["ipi"]
license = {text = "Unlicense"}
requires-python = ">=3.4"
dynamic = ["version"]
# for URIs of repos see within the `defaultPetnames` dir
dependencies = [
"plumbum",
"RichConsole",
"peval",
"httpx",
"sh",
"packaging",
"distlib",
"installer",
"uninstaller",
"unpin",
"tomli",
"appdirs",
#"platformdirs",
"icecream",
"pyproject_hooks",
"tuft",
"securesystemslib_KOLANICH",
"miniGHAPI",
"landlock",
]
[project.optional-dependencies]
#GitHub = ["miniGHAPI",]
fast_json = ["mujson",]
[project.urls]
Homepage = "https://github.com/KOLANICH-tools/ipi.py"
[project.scripts]
ipi = "ipi.__main__:main"
[tool.setuptools]
zip-safe = true
[tool.setuptools.packages.find]
include = ["ipi", "ipi.*"]
[tool.setuptools_scm]