-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.19 KB
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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "bibtex-dblp"
description = "Create and revise bibtex entries from DBLP."
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
dynamic = ["version"]
authors = [
{ name = "M. Volk", email = "m.volk@tue.nl" }
]
requires-python = ">=3.10"
dependencies = [
"requests",
"pybtex",
"pyperclip", # Copy to clipboard
"requests-ratelimiter", # Rate limiting for requests
]
[project.urls]
Homepage = "https://github.com/volkm/bibtex-dblp"
"Bug Tracker" = "https://github.com/volkm/bibtex-dblp/issues"
[project.optional-dependencies]
dev = [
# Formatting
"black",
]
test = [
"pytest",
]
[project.scripts]
convert_dblp = "bin.convert_dblp:main"
import_dblp = "bin.import_dblp:main"
modify_bibtex = "bin.modify_bibtex:main"
update_from_dblp = "bin.update_from_dblp:main"
[tool.hatch.version]
path = "bibtex_dblp/__init__.py"
[tool.hatch.build.targets.wheel.force-include]
"bin" = "bin"
[tool.black]
line-length = 160
target-version = [
"py311",
"py312",
"py313",
"py314",
]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]