-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aetherpy"
version = "1.0.0"
description = "Fast Python library for terrain visibility analysis"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [
{ name="Lorenz Schmid", email="lorenzdschmid@gmail.com" },
]
keywords = ["gis", "viewshed", "visibility", "remote-sensing", "dem"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.20",
"numba>=0.55",
"rasterio>=1.2",
"matplotlib>=3.4",
"fiona>=1.8",
"joblib>=1.1",
]
[project.urls]
"Homepage" = "https://github.com/SchmidL/aetherpy"
"Repository" = "https://github.com/SchmidL/aetherpy.git"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests", "examples", "docs"]
[tool.release-please]
version-file = "pyproject.toml"
changelog-path = "CHANGELOG.md"
pull-request-title-pattern = "chore(release): release ${version}"