-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
43 lines (38 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.9"
name = "minimal-pba-cli-plugin-example"
version = "0.0.3"
description = "A minimal command-line interface plugin for minimal-pba-cli"
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 = [
"rich>=14.0.0",
"typer>=0.12.5",
]
[project.urls]
Repository = "https://github.com/easy-as-python/minimal-pba-cli-plugin-example"
Issues = "https://github.com/easy-as-python/minimal-pba-cli-plugin-example/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
readme = { file = "README.md", content-type = "text/markdown" }
[project.entry-points.minimal_pba_cli]
example = "minimal_pba_cli_plugin_example.plugin"