-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (37 loc) · 1.06 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
[tool.poetry]
name = "pyinaturalist-notebook"
version = "0.19.0"
description = "A Jupyter notebook image for iNaturalist data exploration & visualization"
authors = ["Jordan Cook"]
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
altair = ">=4.1"
altair-saver = ">=0.5"
bar_chart_race = ">=0.1"
beautifulsoup4 = ">=4.0"
black = ">=22.3"
ipyplot = ">=1.1"
isort = ">=5.10"
jupyterlab-code-formatter = ">=2.2"
jupyterlab-geojson = ">=3.1"
pillow = ">=9.1.1"
plotly = ">=5.1"
pyinaturalist-convert = {extras = ["all"], version = ">=0.6"}
pyopenssl = ">=23.2"
vega-datasets = ">=0.9"
websocket-client = ">=1.3"
xarray = ">=0.18"
# Version solving sometimes get stuck on trying every combination of these
# urllib3 = "^2.0.7"
# boto3 = "^1.34.13"
# botocore = "^1.34.13"
# Specific version is optionally set via workflow variable -> Docker build arg
pyinaturalist = {extras = ["all"], version = "*"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
skip-string-normalization = true
line-length = 100