This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
57 lines (48 loc) · 1.82 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
[project]
name = "sphinxcontrib-cldomain"
version = "0.17.1"
description = "Sphinx domain for Common Lisp"
authors = [
{ name = "Russell Sim", email = "rsl@simopolis.xyz" }
]
readme = "README.rst"
requires-python = ">=3.7"
license = { text = "GPL-3.0-or-later" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Documentation",
"Topic :: Utilities",
]
dependencies = [
'pygments',
]
[project.urls]
"Homepage" = "https://sr.ht/~rsl/sphinxcontrib-cldomain/"
"Bug Reports" = "https://todo.sr.ht/~rsl/sphinxcontrib-cldomain"
"Source" = "https://git.sr.ht/~rsl/sphinxcontrib-cldomain"
[build-system]
requires = ["setuptools>=43.0.0"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
# [tool.setuptools]
# packages = ["sphinxcontrib.cldomain", "sphinxcontrib.hyperspec"]
# package-dir = "."
# [tool.setuptools.packages.find]
# include = ["sphinxcontrib*"]
#exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)
#namespaces = false # to disable scanning PEP 420 namespaces (true by default)
# [tool.setuptools.packages.find]
# where = ["."] # list of folders that contain the packages (["."] by default)
# include = ["sphinxcontrib*"] # package names should match these glob patterns (["*"] by default)
# #exclude = ["my_package.tests*"] # exclude packages matching these glob patterns (empty by default)
# namespaces = false # to disable scanning PEP 420 namespaces (true by default)