-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
57 lines (52 loc) · 1.59 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
55
56
57
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm[toml]>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "rich-rst"
dynamic = ["version"]
description = "A beautiful reStructuredText renderer for rich"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "Wasi Master", email = "arianmollik323@gmail.com" }
]
keywords = ["richrst", "restructuredtextrich", "restructuredtextrich-restructuredtextrich", "rstrich-rst"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English"
]
dependencies = [
"docutils",
"rich>=12.0.0",
]
[project.urls]
"Bug Tracker" = "https://github.com/wasi-master/rich-rst/issues"
"Source" = "https://github.com/wasi-master/rich-rst"
"Documentation" = "https://rich-rst.readthedocs.io/en/latest/"
"Say Thanks" = "https://saythanks.io/to/wasi-master"
"Homepage" = "https://wasi-master.github.io/rich-rst"
[project.optional-dependencies]
docs = [
"sphinx"
]
[tool.setuptools]
packages = [
"rich_rst",
]
[tool.setuptools_scm]
version_file = "rich_rst/_version.py"