-
Notifications
You must be signed in to change notification settings - Fork 4
/
Pipfile
69 lines (65 loc) · 1.42 KB
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
asgi_lifespan = "*"
black = "*"
detect-secrets = "*"
docker = "*"
flake8 = "*"
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 = {git = "https://github.com/wri/gfw_pixetl.git", ref = "develop"}
moto = {version = "<5", extras = ["awslambda", "batch", "ec2", "s3", "secretsmanager"]}
openapi_spec_validator = "*"
pandas = "<2.2" # Needed by pixetl in batch script test
pre-commit = "*"
pytest = "*"
pytest-asyncio = "*"
pytest-cov = "*"
pytest-timeout = "*"
rasterio = "*"
responses = "*"
retrying = "*" # Needed by pixetl in batch script test
[packages]
aenum = "*"
aiofiles = "*"
aiohttp = "*"
alembic = "*"
arq = "*"
async-lru = "*"
asyncpg = "*"
boto3 = "*"
botocore = "*"
email-validator = "*"
fastapi = "*"
geoalchemy2 = "<0.12"
geojson = "*"
gino = "*"
gino_starlette = "*"
google-cloud-storage = "*"
httpcore = "*"
httpx = "*"
httpx-auth = "*"
numpy = "<2.0"
orjson = "*"
packaging = "*"
pendulum = "<3"
pglast = "<2"
psutil = "*"
psycopg2 = "*"
pydantic = "<2"
pyproj = "*"
python-multipart = "*"
shapely = "*"
sqlalchemy = "<1.4"
sqlalchemy-utils = "*"
starlette = "*"
typer = "*"
uvicorn = {version = "*", extras = ["standard"]}
[requires]
python_version = "3.10"
[pipenv]
allow_prereleases = false