-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.11 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
[project]
name = "silvimetric"
requires-python = ">=3.9"
description = "A forestry LiDAR processing package"
readme = "README.md"
license = { text = "Apache-2.0" }
authors = [
{ name = "Kyle Mann", email = "[email protected]" },
{ name = "Howard Butler", email = "[email protected]" }
]
maintainers = [
{ name = "Kyle Mann", 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 = [
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/hobuinc/silvimetric"
repository = "https://github.com/hobuinc/silvimetric"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = { attr = "silvimetric.__version__" }
[build-system]
requires = ["setuptools>=64.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
silvimetric = "silvimetric.cli.cli:cli"
[tool.pytest.ini_options]
testpaths = [
"tests"
]