-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·49 lines (47 loc) · 1.14 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·49 lines (47 loc) · 1.14 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
[project]
name = "IIP-dev"
version = "0.1.0"
description = "Pyproject para desarrollo de todo el proyecto. SOLO DEV, NO PRODUCCIÓN"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"aiofiles>=25.1.0",
"alembic>=1.18.4",
"argon2-cffi>=25.1.0",
"asyncpg>=0.31.0",
"celery>=5.6.3",
"cryptography>=46.0.6",
"fastapi>=0.135.2",
"google-genai>=1.69.0",
"models",
"openpyxl>=3.1.5",
"pandas>=3.0.1",
"psycopg[binary]>=3.3.3",
"pydantic[email]>=2.12.5",
"python-jose>=3.5.0",
"python-multipart>=0.0.22",
"shared",
"shared-db",
"shared-models",
"shared-schemas",
"shared-utils",
"sqlalchemy>=2.0.48",
"uuid-utils>=0.14.1",
"uvicorn>=0.42.0",
]
[tool.uv.sources]
shared-db = { workspace = true }
shared-utils = { workspace = true }
shared-models = { workspace = true }
shared-schemas = { workspace = true }
shared = { workspace = true }
models = { workspace = true }
[tool.uv.workspace]
members = [
"Packages/shared_db",
"Packages/shared_models",
"Packages/shared_schemas",
"Packages/shared_utils",
"Packages/shared",
"Persistence/src/models"
]