generated from ac-willeke/py-linux-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
75 lines (68 loc) · 1.37 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pygdal-geo-engineer"
version = "0.1.0"
description = "Project for geo-engineering using Python, GDAL and SQL."
authors = ["Willeke A'Campo <[email protected]>"]
license = "MIT"
repository = "https://github.com/ac-willeke/pygdal-geo-engineer"
keywords = ["geodata", "spatial"]
packages = [
{include="py_scripts", from = "src"}
]
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^1.0.0"
pyyaml = "^6.0.1"
pyaml-env = "^1.2.1"
rasterio = "^1.3.8"
numpy = "^1.25.2"
geopandas = "^0.14.0"
xarray = "^2023.10.1"
rioxarray = "^0.15.0"
jupyter = "^1.0.0"
leafmap = "^0.31.5"
ipyleaflet = "^0.18.2"
pyarrow = "^15.0.1"
shapely = "^2.0.3"
rasterstats = "^0.19.0"
gdal = "3.6.3"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
isort = "^5.12.0"
ruff = "^0.0.286"
pyment = "^0.3.3"
pytest = "^7.4.0"
[tool.black]
# https://github.com/psf/black
line-length = 88
color = true
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| env
| venv
)/
'''
[tool.isort]
# https://pycqa.github.io/isort/docs/configuration/black_compatibility.html
profile = "black"
[tool.ruff]
# https://beta.ruff.rs/docs/settings
fix = true
ignore = ["E501"]
exclude = [
".git",
".env",
".venv"
]