-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.14 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "arxiv-dl"
version = "1.1.6"
authors = [{ name = "Mark He Huang", email = "[email protected]" }]
license = { file = "LICENSE" }
description = "Command-line Papers Downloader. Citation extraction and PDF naming automation."
keywords = [
"arxiv",
"paper",
"downloader",
"CVPR",
"ICCV",
"ECCV",
"WACV",
"CVF",
]
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"colorlog>=4.1.0",
"requests",
"pydantic",
"pymupdf",
"beautifulsoup4",
"black",
"isort",
]
classifiers = [
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
]
[project.optional-dependencies]
dev = ["check-manifest", "pytest", "tox", "twine", "wheel"]
[project.scripts]
paper = "arxiv_dl.__main__:cli"
getpaper = "arxiv_dl.__main__:cli"
arxiv-dl = "arxiv_dl.__main__:cli"
[project.urls]
Homepage = "https://github.com/MarkHershey/arxiv-dl"
Issues = "https://github.com/MarkHershey/arxiv-dl/issues"