-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
70 lines (67 loc) · 1.22 KB
/
pyproject.toml
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
[project]
name = "gfw-data-api"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = "~= 3.10"
dependencies = [
"aenum",
"aiofiles",
"aiohttp",
"alembic",
"arq",
"asgi_lifespan",
"async-lru",
"asyncpg",
"boto3",
"botocore",
"email-validator",
"fastapi",
"geoalchemy2<0.12",
"geojson",
"gino",
"gino_starlette",
"google-cloud-storage",
"httpcore",
"httpx",
"httpx-auth",
"newrelic",
"numpy<2",
"openapi_spec_validator",
"orjson",
"packaging",
"pendulum",
"pglast<2",
"psutil",
"psycopg2",
"pydantic<2",
"pyproj",
"python-multipart",
"retrying",
"shapely",
"sqlalchemy<1.4",
"sqlalchemy-utils",
"starlette",
"typer",
"uvicorn[standard]",
]
[tool.setuptools]
packages = ["app", "batch"]
[tool.uv]
dev-dependencies = [
"docker",
"pytest",
"pytest-asyncio",
"rasterio==1.3.11",
"gfw-pixetl",
"moto<5",
"pandas<2.2",
"geopandas",
"pytest",
"pytest-timeout",
"pre-commit",
"pytest-cov",
"retrying",
]
[tool.uv.sources]
gfw-pixetl = { git = "https://github.com/wri/gfw_pixetl.git", branch = "develop" }