-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.24 KB
/
Copy pathpyproject.toml
File metadata and controls
62 lines (54 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "zerodev"
version = "0.1.0"
description = "ZeroDev Agent: Autonomous app development pipeline - crawl requirements, generate Flutter apps, build and publish."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"celery[redis]>=5.3",
"redis>=5.0",
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
"httpx>=0.27",
"beautifulsoup4>=4.12",
"anthropic>=0.40",
"praw>=7.7",
"google-play-scraper>=1.2",
"sqlalchemy[asyncio]>=2.0",
"asyncpg>=0.29",
"psycopg2-binary>=2.9",
"alembic>=1.13",
"pydantic>=2.6",
"pydantic-settings>=2.1",
"python-dotenv>=1.0",
"rich>=13.7",
"typer>=0.9",
"Pillow>=10.2",
"aiosqlite>=0.20",
"langgraph>=0.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=4.1",
"ruff>=0.3",
"mypy>=1.8",
]
[project.scripts]
zerodev = "zerodev.main:app"
[tool.ruff]
target-version = "py311"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "N", "W", "UP"]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
[tool.mypy]
python_version = "3.11"
strict = true