-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 952 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 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
[project]
name = "muckrake"
version = "0.1.0"
description = "A framework for creating and storing FollowTheMoney entities, used by OpenLobbying."
readme = "README.md"
authors = [
{ name = "Nicu Calcea", email = "mail@nicu.md" }
]
requires-python = ">=3.13"
dependencies = [
"beautifulsoup4>=4.14.3",
"click>=8.3.1",
"datapatch>=1.2.4",
"fastapi>=0.127.0",
"followthemoney>=4.4.0",
"org-id>=0.1.0",
"lxml>=6.0.2",
"nomenklatura>=4.4.1",
"openpyxl>=3.1.5",
"pandas>=2.3.3",
"pydantic-ai-slim[google,openrouter]>=1.0.0",
"psycopg[binary]>=3.2.12",
"plyvel>=1.5.1",
"pyyaml>=6.0.3",
"requests>=2.32.5",
"xlrd>=2.0.2",
"uvicorn>=0.40.0",
"logfire[httpx,sqlalchemy]>=4.24.0",
"odfpy>=1.4.1",
]
[project.scripts]
muckrake = "muckrake.cli:cli"
[build-system]
requires = ["uv_build>=0.9.17,<0.10.0"]
build-backend = "uv_build"
[dependency-groups]
dev = [
"pytest>=9.0.3",
]