forked from frostming/pycomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 844 Bytes
/
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
[build-system]
requires = ["pdm-pep517"]
build-backend = "pdm.pep517.api"
[project]
# PEP 621 project metadata
# See https://www.python.org/dev/peps/pep-0621/
authors = [
{name = "Frost Ming", email = "[email protected]"},
]
dynamic = ["version", "classifiers"]
version = {from = "pycomplete/__init__.py"}
requires-python = ">=3.6"
license = {text = "BSD-3-Clause"}
dependencies = []
dev-dependencies = [
"pytest<7.0.0,>=6.1.1",
"click<8.0.0,>=7.1.2",
]
name = "pycomplete"
description = "A Python library to generate static completion scripts for your CLI app"
readme = "README.md"
keywords = ["cli", "shell"]
classifiers = [
"Development Status :: 3 - Alpha",
]
[project.urls]
Homepage = "https://github.com/frostming/pycomplete"
[project.optional-dependencies]
[project.scripts]
pycomplete = "pycomplete.__main__:main"