-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
113 lines (102 loc) · 2.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[tool.poetry]
authors = ["Gabriel Gazola Milan <[email protected]>"]
description = ""
license = "GPL-3.0"
name = "pipelines"
version = "0.1.0"
[tool.poetry.dependencies]
PyMySQL = { extras = ["rsa"], version = "^1.0.2" }
Shapely = "^1.8.1"
Unidecode = "^1.3.6"
basedosdados = { version = "2.0.0b14", extras = ["upload"] }
black = "20.8b1"
bs4 = "^0.0.1"
croniter = "^1.3.5"
cx-Oracle = "^8.3.0"
dbt-client = "^0.1.3"
earthengine-api = "^0.1.334"
elasticsearch = "^8.2.0"
geobr = "^0.1.10"
geojsplit = "^0.1.2"
geopandas = ">=0.7.0,<0.8.0" # This version range is due to `geobr` package
geopy = "^2.3.0"
google-api-python-client = "^2.56.0"
google-cloud-pubsub = "^2.17.1"
gspread = "^5.5.0"
h5py = "^3.7.0"
haversine = "^2.6.0"
html5lib = "^1.1"
hvac = "0.11.2"
joblib = "^1.2.0"
kaleido = "0.2.1"
loguru = "^0.7.0"
lxml = "^4.9.1"
matplotlib = "3.5.1"
mlflow = { extras = ["extras"], version = "^2.5.0" }
netCDF4 = "1.5.8"
numpy = "1.22.0"
opencv-python = "^4.6.0"
pandas = "2.0.3"
pandas-read-xml = "^0.3.1"
pendulum = "2.1.2"
pexpect = "^4.8.0"
phonenumbers = "^8.12.57"
plotly = "^5.14.0"
prefect = "0.15.9"
pyproj = "^3.4.0"
python = ">=3.9,<3.11"
python-telegram-bot = "^13.11"
pytz = "^2021.3"
rasterio = "1.3a3"
redis-pal = "1.0.0"
requests = "^2.20"
rioxarray = "0.9.0"
s3fs = "^2022.2.0"
scikit-learn = "1.2.1"
scp = "^0.14.4"
statsmodels = "^0.13.0"
tweepy = "4.4"
xarray = "^2022.6.0"
xgboost = "^1.7.4"
psycopg2-binary = "^2.9.9"
azure-storage-blob = "^12.17.0"
icecream = "^2.1.3"
pyodbc = "^5.0.1"
h3 = "^3.7.6"
dask = "^2023.11.0"
cartopy = "^0.22.0"
openpyxl = "^3.1.2"
[tool.poetry.dev-dependencies]
pylint = "^2.12.2"
pytest_cov = "^3.0.0"
#
# Keep this until group dependencies are stable on Poetry
#
# [tool.poetry.group.cli]
# optional = true
# [tool.poetry.group.cli.dependencies]
loguru = "^0.7.0"
python-string-utils = { git = "https://github.com/daveoncode/python-string-utils.git", rev = "master" }
typer = "0.9.0"
# [tool.poetry.group.deploy]
# optional = true
# [tool.poetry.group.deploy.dependencies]
google-cloud-storage = "^2.9.0"
# loguru = "^0.6.0"
# poetry = "^1.1.13"
# prefect = "0.15.9"
python-box = { version = "^5.4.1" }
# typer = "^0.4.0"
# [tool.poetry.group.dev]
# optional = true
# [tool.poetry.group.dev.dependencies]
black = "20.8b1"
flake8 = "^4.0.1"
pdoc3 = "^0.10.0"
pre-commit = "^2.17.0"
[tool.poetry.scripts]
docs = "scripts.docs:main"
lint = "scripts.lint:main"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]