-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.12 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
[project]
name = "docop"
version = "0.8.0"
authors = [
{name = "Petri Savolainen", email = "[email protected]"},
]
description = "Simple doc processor"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GPLv3+"}
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
]
dependencies = [
"yamlstore >= 0.8.2",
"click >= 8.1.7",
"rich >= 13.7.0"
]
[project.urls]
Homepage = "https://github.com/koodaamo/docop"
Repository = "https://github.com/koodaamo/docop"
Documentation = "https://docop.readthedocs.io/en/latest/"
Issues = "https://github.com/koodaamo/docop/issues"
Changelog = "https://github.com/koodaamo/docop/blob/main/CHANGES.md"
[project.scripts]
docop = "docop.cli:docop"
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["docop"]
[tool.setuptools.package-data]
docop = ["py.typed", "config.yaml.in"]