-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
85 lines (76 loc) · 2.38 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
[tool.poetry]
name = "nvcl-geopackager"
version = "0.0.1"
description = "A python project to assist with the creation and distribution of geopackage files to assist with geospatial searching."
authors = ["John Hille <[email protected]>"]
license = "CSIRO"
[tool.poetry.dependencies]
python = "^3.8,<3.10"
requests = "^2.25.1"
loguru = "*"
python-dotenv = "*"
numpy = "^1.19.1"
toml = "*"
fiona = [
{ platform = 'linux', version = "*" },
{ platform = 'win32', url = "https://storage.googleapis.com/public-python-libs/Fiona-1.8.16-cp38-cp38-win_amd64.whl" }
]
gdal = [
{ platform = 'linux', version = "3.2.1" },
{ url = "https://storage.googleapis.com/public-python-libs/GDAL-3.1.2-cp38-cp38-win_amd64.whl", platform = 'win32' }
]
geopandas = [
{ platform = 'linux', version = "*" },
{ platform = 'win32', url = "https://storage.googleapis.com/public-python-libs/geopandas-0.8.1-py3-none-any.whl" },
]
pydantic = "*"
pyproj = [
{ version = "*", platform = 'linux' },
{ url = "https://storage.googleapis.com/public-python-libs/pyproj-2.6.1.post1-cp38-cp38-win_amd64.whl", platform = 'win32' },
]
rasterio = [
{ platform = 'linux', version = "*" },
{ platform = 'win32', url = "https://storage.googleapis.com/public-python-libs/rasterio-1.1.5-cp38-cp38-win_amd64.whl" },]
shapely = [
{ version = "*", platform = 'linux' },
{ platform = 'win32', url = "https://storage.googleapis.com/public-python-libs/Shapely-1.7.1-cp38-cp38-win_amd64.whl" },
]
cartopy = [
{ version = "0.19.0.post1", platform = 'linux' },
{ url = "https://storage.googleapis.com/public-python-libs/Cartopy-0.18.0-cp38-cp38-win_amd64.whl", platform = 'win32' },
]
ipywidgets = "^7.6.3"
panel = "^0.11.3"
jupyterlab = "^3.0.16"
nodejs = "^0.1.1"
geoviews = "^1.9.1"
scipy = "^1.6.3"
descartes = "^1.1.0"
splot = "^1.1.3"
hvplot = "^0.7.2"
ipython = "^7.24.1"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
pytest = "^6.2.3"
autoflake = "^1.4"
flake8 = "^3.9.0"
mypy = "^0.812"
pylint = "^2.7.4"
pytest-cov = "^2.11.1"
[tool.black]
line_length = 120
target_version = ['py38']
[tool.poetry2conda]
name = "nvcl-geopackager"
[tool.pylint.FORMAT]
output_format = "colorized"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--quiet --color=auto"
norecursedirs = ".git dist build .tox *.egg-info"
testpaths = [
"tests",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"