-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (54 loc) · 1023 Bytes
/
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
[tool.poetry]
name = "tile-operator"
version = "0.0.6"
description = "Tile Operation tool"
authors = ["nokonoko1203 <[email protected]>"]
readme = "README.md"
packages = [{ include = "tile_operator" }]
[tool.poetry.dependencies]
python = "^3.8"
geopandas = "^0.12.0"
click = "^8.1.0"
matplotlib = "^3.6.0"
numpy = "^1.23.0"
pillow = "^9.3.0"
rasterio = "^1.3.0"
tqdm = "^4.64.0"
requests = "^2.28.0"
mercantile = "^1.2.0"
[tool.poetry.group.dev.dependencies]
pytest = "^5.2"
black = "^22.10.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py39']
include = '\.py$'
exclude = '''
(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| venv
| \.idea
| \.vscode
| \.pytest_cache
| _build
| buck-out
| build
| dist
| migrations
| data
| contrib
| output
)
'''
[tool.isort]
profile = "black"
line_length = 120
skip_glob = "*/migrations/*.py"