-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
72 lines (69 loc) · 1.52 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
71
72
[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<3",
"pglast<2",
"psutil",
"psycopg2",
"pydantic<2",
"pyproj",
"python-multipart",
"retrying",
"shapely",
"sqlalchemy<1.4",
"sqlalchemy-utils",
"starlette",
"typer",
"uvicorn[standard]",
]
[dependency-groups]
dev = [
"asgi-lifespan",
"docker",
"geopandas", # Needed by pixetl in batch script test
# Pixetl is already installed in the pixetl image that's run in Batch,
# this is to enable tests to run in the test container:
"gfw-pixetl",
"moto[awslambda, batch, ec2, s3, secretsmanager]<5",
"pandas<2.2", # Needed by pixetl in batch script test
"pre-commit",
"pytest",
"pytest-asyncio",
"pytest-cov",
"pytest-timeout",
"rasterio==1.3.11",
"retrying", # Needed by pixetl in batch script test
]
[tool.setuptools]
packages = ["app", "batch"]
[tool.uv.sources]
gfw-pixetl = { git = "https://github.com/wri/gfw_pixetl.git", branch = "develop" }