-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 789 Bytes
/
Copy pathpyproject.toml
File metadata and controls
37 lines (32 loc) · 789 Bytes
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
[project]
name = "papertrack"
version = "0.1.0"
description = "Track papers from arXiv and journals, cross-check Zotero, generate Obsidian reports"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name="Cunxi Gong", email="ansatzMe@outlook.com" },
]
dependencies = [
'pyzotero',
'bs4',
'lxml',
'feedparser',
'jinja2>=3.0',
'tomli>=1.0; python_version < "3.11"',
'curl_cffi>=0.7',
'requests>=2.20',
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.1",
]
[project.scripts]
papertrack = "papertrack.cli:main"
[project.urls]
Homepage = "https://github.com/ansatzX/PaperTrack"
[tool.setuptools]
packages = ["papertrack"]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
papertrack = ["templates/*.j2", "categories.toml"]