forked from grizz/pymdgen
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.26 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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pymdgen"
readme = "README.md"
version = "1.1.0"
description = "python code markdown documentation generator"
authors = [{ name = "20C", email = "[email protected]" }]
license = "Apache-2.0"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
include = [ "LICENSE", "Ctl/VERSION", "src/pymdgen/*.py", ]
dependencies = [
"pluggy>=1.5.0",
"pre-commit>=2.14.0",
]
[project.optional-dependencies]
dev = [
"codecov>=2.0.5",
"coverage>=4.1",
"pytest>=8",
"pytest-cov>=5",
"tox>=4",
"tox-gh_actions>=3",
"tox-uv>=1.13.0",
"pyupgrade>=2.19",
"ruff>=0.1",
"markdown",
"markdown-include>=0.5,<1",
"mkdocs>=1.0.0,<2.0.0",
]
[project.entry-points."markdown.extensions"]
pymdgen = "pymdgen.md:Extension"
[project.scripts]
pymdgen = "pymdgen.cli:main"
[project.source]
name = "pypi-public"
url = "https://pypi.org/simple/"