-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
55 lines (52 loc) · 1.45 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
[build-system]
requires = ["setuptools >= 61.2.0", "wheel >= 0.37.1"]
build-backend = "setuptools.build_meta"
[project]
# https://peps.python.org/pep-0621/#readme
version = "3.2"
requires-python = ">=3.10"
name = "py-web-lp"
description="py-web-lp: Yet Another Literate Programming Tool"
readme = "README.rst"
authors = [{"name" = "S.Lott", "email" = "[email protected]"}]
license = {text = "BSD"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: System :: Systems Administration",
"Topic :: Text Processing :: Markup",
"Typing :: Typed",
]
dependencies = [
# Direct
"tomli; python_version < '3.11'",
"jinja2==3.1.4",
# Indirect components of build system
"setuptools",
"wheel",
]
[project.urls]
repository = "https://github.com/slott56/py-web-tool"
documentation = "https://slott56.github.io/py-web-tool/src/pyweb.html"
[project.optional-dependencies]
dev = [
"sphinx==7.0.1",
"sphinxcontrib-plantuml==1.0.0",
"docutils==0.20.1",
"build",
"twine",
]
test = [
"tox == 4.6.4",
"pytest == 7.4.0",
"mypy == 1.4.1"
]