-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpyproject.toml
58 lines (53 loc) · 2.02 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
58
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sphinxcontrib-bibtex"
version = "2.6.4a0"
license = { text = "BSD-2-Clause" }
description = "Sphinx extension for BibTeX style citations."
readme = "README.rst"
requires-python = ">=3.7"
authors = [
{email = "matthias.troffaes@gmail.com"},
{name = "Matthias C. M. Troffaes"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Documentation",
"Topic :: Utilities",
]
dependencies = [
"Sphinx>=3.5",
"docutils>=0.8,!=0.18.*,!=0.19.*",
"pybtex>=0.24",
"pybtex-docutils>=1.0.0",
"importlib_metadata>=3.6; python_version < '3.10'",
"setuptools; python_version >= '3.12'" # for pybtex...
]
[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
[project.urls]
homepage = "https://github.com/mcmtroffaes/sphinxcontrib-bibtex"
[project.entry-points."pybtex.style.names"]
last = "sphinxcontrib.bibtex.style.names.last:LastNameStyle"
[project.entry-points."sphinxcontrib.bibtex.style.referencing"]
author_year = "sphinxcontrib.bibtex.style.referencing.author_year:AuthorYearReferenceStyle"
foot = "sphinxcontrib.bibtex.style.referencing.foot:FootReferenceStyle"
label = "sphinxcontrib.bibtex.style.referencing.label:LabelReferenceStyle"
super = "sphinxcontrib.bibtex.style.referencing.super_:SuperReferenceStyle"