-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.28 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
name = "minimal-pba-cli"
version = "0.0.5"
description = "A minimal command-line interface using plugin-based architecture"
authors = [
{ name = "Dane Hillard", email = "github@danehillard.com" }
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
license = "MIT"
dynamic = ["readme"]
dependencies = [
"packaging>=24.2",
"requests>=2.32.3",
"rich>=14.0.0",
"trogon[typer]>=0.6.0",
"typer>=0.12.5",
]
[project.urls]
Repository = "https://github.com/easy-as-python/minimal-pba-cli"
Issues = "https://github.com/easy-as-python/minimal-pba-cli/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
readme = { file = "README.md", content-type = "text/markdown" }
[project.scripts]
pba-cli = "minimal_pba_cli.cli:main"