-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (92 loc) · 2.4 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (92 loc) · 2.4 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "litcurate"
dynamic = ["version"]
description = "Config-driven literature-to-database pipeline with checkpoint and resume"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Abin Shakya" },
{ name = "LitCurate contributors" },
]
keywords = [
"literature-mining",
"information-extraction",
"llm",
"openalex",
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
dependencies = [
"anthropic>=0.40.0",
"httpx>=0.27.0",
"jsonschema>=4.0.0",
"pandas>=2.0.0",
"pyarrow>=14.0.0",
"pydantic>=2.0.0",
"marker-pdf>=1.10.2,<2.0.0",
"pydantic-settings>=2.0.0",
"python-dotenv>=1.0.0",
"pyyaml>=6.0",
"typer>=0.12.0",
"rich>=13.0.0",
]
[project.urls]
Homepage = "https://github.com/MineralsCloud/litcurate"
Documentation = "https://mineralscloud.github.io/litcurate/"
Issues = "https://github.com/MineralsCloud/litcurate/issues"
Changelog = "https://github.com/MineralsCloud/litcurate/blob/main/CHANGELOG.md"
Citation = "https://github.com/MineralsCloud/litcurate/blob/main/CITATION.cff"
[project.optional-dependencies]
openalex = ["pyalex>=0.21"]
dev = ["pytest>=8.0.0", "ruff>=0.6.0"]
docs = ["mkdocs-material>=9.5.0"]
[project.scripts]
litcurate = "litcurate.cli:app"
[tool.hatch.version]
path = "src/litcurate/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/litcurate"]
[tool.hatch.build.targets.sdist]
only-include = [
"src/litcurate",
"configs",
"schemas",
"prompts",
"tests",
"docs",
"mkdocs.yml",
"README.md",
"LICENSE",
"CHANGELOG.md",
"CITATION.cff",
"CONTRIBUTING.md",
".env.example",
]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # Pyflakes
"W", # pycodestyle warnings
"I", # isort
]
ignore = [
"E501", # line length is enforced by ruff format / line-length
"E712", # pandas boolean columns need == True / == False
]
[tool.pytest.ini_options]
testpaths = ["tests"]