-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
74 lines (67 loc) · 1.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
[project]
name = "arxiv-explorer"
version = "0.1.0"
description = "Personalized arXiv paper recommendation and management system"
readme = "README.md"
license = "MIT"
authors = [
{ name = "Axect", email = "axect.tg@proton.me" },
]
requires-python = ">=3.11"
keywords = [
"arxiv",
"papers",
"recommendation",
"research",
"cli",
"tui",
"machine-learning",
"academic",
"science",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Text Processing :: General",
"Typing :: Typed",
]
dependencies = [
"typer>=0.9.0",
"rich>=13.0.0",
"scikit-learn>=1.3.0",
"feedparser>=6.0.0",
"httpx>=0.25.0",
"numpy>=1.24.0",
"textual>=0.85.0",
]
[project.scripts]
axp = "arxiv_explorer.cli.main:app"
[project.urls]
Homepage = "https://github.com/Axect/arXiv_explorer"
Repository = "https://github.com/Axect/arXiv_explorer"
Documentation = "https://github.com/Axect/arXiv_explorer#readme"
Issues = "https://github.com/Axect/arXiv_explorer/issues"
Changelog = "https://github.com/Axect/arXiv_explorer/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/arxiv_explorer"]
[dependency-groups]
dev = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"ruff>=0.8.0",
]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "B", "I"]
ignore = ["E501", "B008"]