-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 952 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 952 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
38
39
40
41
42
[build-system]
requires = ["hatchling>=1.25"]
build-backend = "hatchling.build"
[project]
name = "euraxess-scraper"
version = "0.1.0"
description = "Local EURAXESS crawler with hybrid search"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"httpx[http2]>=0.27,<1.0",
"beautifulsoup4>=4.12,<5.0",
"lxml>=5.0,<6.0",
"typer>=0.12,<1.0",
"fastapi>=0.115,<1.0",
"uvicorn[standard]>=0.30,<1.0",
"jinja2>=3.1,<4.0",
"pyyaml>=6.0,<7.0",
"sentence-transformers>=3.0,<4.0",
"faiss-cpu>=1.8,<2.0",
"pyarrow>=17.0,<19.0",
"rich>=13.0,<14.0",
"langdetect>=1.0,<2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
]
[project.scripts]
euraxess-scraper = "euraxess_scraper.cli:app"
[tool.hatch.build.targets.wheel]
packages = ["euraxess_scraper"]
[tool.pytest.ini_options]
markers = [
"integration: marks tests that hit live EURAXESS endpoints"
]