-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (36 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
[project]
name = "trenchrun"
requires-python = ">=3.8"
description = "Compute the Death Star trenchrun image from lidar data"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "Howard Butler", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Image Processing"
]
dependencies = [
"typing-extensions"
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/hobuinc/trenchrun"
repository = "https://github.com/hobuinc/trenchrun"
[tool.setuptools]
package-dir = {"" = "src"}
zip-safe = false
[tool.setuptools.dynamic]
version = { attr = "trenchrun.__init__.__version__" }
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
trenchrun = "trenchrun.__main__:trenchrun"
rls = "trenchrun.__main__:rls"
trenchrun-builder = "trenchrun.__main__:pipline_builder"