-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
81 lines (72 loc) · 2.32 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "bibtexautocomplete"
authors = [{ name = "Dorian Lesbre", email = "[email protected]" }]
maintainers = [{ name = "Dorian Lesbre", email = "[email protected]" }]
dynamic = ["version"]
description = "Script to autocomplete bibtex files by polling online databases"
requires-python = ">= 3.8"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["bibtex", "biblatex", "latex", "autocomplete", "btac"]
dependencies = [
"bibtexparser<2.0.0",
"alive-progress>=3.0.0",
]
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Environment :: Console",
"Natural Language :: English",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"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",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Markup :: LaTeX",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Utilities",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://github.com/dlesbre/bibtex-autocomplete"
Repository = "https://github.com/dlesbre/bibtex-autocomplete.git"
Issues = "https://github.com/dlesbre/bibtex-autocomplete/issues"
Changelog = "https://github.com/dlesbre/bibtex-autocomplete/blob/master/CHANGELOG.md"
[project.scripts]
btac = "bibtexautocomplete.core:main"
[project.optional-dependencies]
tab = ["argcomplete"]
dev = [
"argcomplete",
"pre-commit",
"pytest",
"mypy",
"ruff",
"coverage",
"pytest-cov",
]
[tool.setuptools.packages.find]
include = ["bibtexautocomplete*"]
[tool.setuptools.dynamic]
version = {attr = "bibtexautocomplete.utils.constants.VERSION_STR"}
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "B", "W", "I"]
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = "bibtexparser.*"
ignore_missing_imports = true