-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.31 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
[tool.poetry]
name = "progressphl-data"
version = "1.0.0"
description = "Data processing for ProgressPHL dashboard"
authors = ["Nick Hand <nicholas.adam.hand@gmail.com>"]
readme = "README.md"
packages = [{ include = "progressphl_data" }]
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
# boto3 = "^1.26.8"
# pandas = ">=1.5"
# simplejson = "^3.17.6"
# geopandas = ">=0.12"
# shapely = ">=2"
# python-dotenv = "^0.21.0"
# loguru = "^0.6.0"
# openpyxl = "^3.0.10"
# rtree = "^1.0.1"
# matplotlib = "^3.6.2"
# httpx = "^0.23.0"
# pygris = "^0.1.2"
# tryagain = "^1.0"
# bs4 = "^0.0.1"
# pydantic = "^1.10.4"
# backoff = "^2.2.1"
# carto2gpd = "^1.0.12"
# rasterio = "^1.3.4"
# rasterstats = "^0.17.0"
# esri2gpd = "^1.0.13"
# scikit-learn = "^1.2.2"
# kneed = "^0.8.2"
# seaborn = "^0.12.2"
# phila-style = "^0.1.1"
# statsmodels = "^0.13.5"
boto3 = "^1.28.30"
click = "^8.1.7"
simplejson = "^3.19.1"
python-dotenv = "^1.0.0"
geopandas = "^0.13.2"
pydantic = "^2.2.1"
httpx = "^0.24.1"
pygris = "^0.1.6"
openpyxl = "^3.1.2"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
ipython = "^8.6.0"
jupyterlab = "^3.5.0"
isort = "^5.10.1"
jupyterlab-code-formatter = "^1.5.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
progressphl-data = "progressphl_data.__main__:cli"