-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.08 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
[build-system]
requires = ["setuptools>=68.0.0", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mkdocs-bibtex"
dynamic = ["version"]
description = "An MkDocs plugin that enables managing citations with BibTex"
readme = "README.md"
requires-python = ">=3.6"
license = {text = "BSD-3-Clause-LBNL"}
keywords = ["mkdocs", "python", "markdown", "bibtex"]
authors = [
{name = "Shyam Dwaraknath", email = "16827130+shyamd@users.noreply.github.com"},
]
dependencies = [
"mkdocs>=1.2",
"pybtex>=0.22",
"pypandoc>=1.5",
"requests>=2.8.1",
"validators>=0.19.0",
"setuptools>=68.0.0",
"responses>=0.25.6",
]
[project.urls]
Homepage = "https://github.com/shyamd/mkdocs-bibtex/"
[project.entry-points."mkdocs.plugins"]
bibtex = "mkdocs_bibtex.plugin:BibTexPlugin"
[tool.setuptools]
package-dir = {"" = "src"}
packages = ["mkdocs_bibtex"]
[tool.ruff]
line-length = 120
exclude = [
'.git',
'__pycache__',
'__init__.py',
]
[tool.setuptools_scm]
[tool.ruff.lint]
ignore = [
'E741',
'W605',
]
select = [
'E',
'F',
'W',
]