-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
47 lines (40 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
45
46
47
[build-system]
# AVOID CHANGING REQUIRES: IT WILL BE UPDATED BY PYSCAFFOLD!
requires = [
"numpy",
"cython",
"setuptools>=64",
"setuptools_scm[toml]>=8",
"wheel",
"meson",
"meson-python>=0.15",
"ninja",
"patchelf ; platform_system != 'Windows'", ## Only linux???
]
build-backend = "mesonpy"
[project]
name = "pynvel"
description = "Python wrapper and extension package for the National Volume Estimator library."
authors = [
{name="Tod Haren", email="tod.haren@gmail.com"},
]
license = {file="LICENSE.txt"}
readme = {file="README.md", content-type="text/markdown"}
keywords = ["Forest Modeling", "Forest Biometrics", "Tree Volume", "NVEL"]
dynamic = ["version"]
dependencies = [
"numpy",
"cython",
"click",
]
[project.urls]
repository = "https://github.com/forest-modeling/PyNVEL"
[project.scripts]
pynvel = "pynvel.__main__:cli"
[tool.setuptools]
packages = ["pynvel",]
[tool.setuptools_scm]
# For smarter version schemes and other configuration options,
# check out https://github.com/pypa/setuptools_scm
version_scheme = "post-release"
# version_scheme = "guess-next-dev"