-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (55 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
64 lines (55 loc) · 1.28 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
[project]
name = "litresearch"
version = "1.0.1"
description = "CLI tool for automated literature research workflows."
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Silas Pignotti", email = "pignottisilas@gmail.com" },
]
license = { text = "MIT" }
dependencies = [
"httpx>=0.28.1",
"litellm==1.82.6",
"pydantic>=2.12.5",
"pydantic-settings>=2.13.1",
"pyalex>=0.15",
"pyzotero>=1.6",
"pypdf>=6.7.5",
"rich>=14.3.3",
"semanticscholar>=0.11.0",
"typer>=0.24.1",
]
[project.urls]
Homepage = "https://github.com/spignotti/litresearch"
Repository = "https://github.com/spignotti/litresearch"
[project.scripts]
litresearch = "litresearch.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/litresearch"]
[dependency-groups]
dev = [
"nox>=2026.2.9",
"pyright>=1.1.408",
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"ruff>=0.15.5",
]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "B"]
[tool.pyright]
include = ["src", "tests"]
pythonVersion = "3.12"
venvPath = "."
venv = ".venv"
typeCheckingMode = "standard"
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = ["src"]
testpaths = ["tests"]