-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (81 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
88 lines (81 loc) · 1.99 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools>=80"]
build-backend = "setuptools.build_meta"
[project]
name = "laserchicken"
version = "0.8.1"
dependencies = [
"laspy[lazrs]",
"scipy>=0.11",
"plyfile",
"python-dateutil",
"PyShp",
"shapely>=2",
"pandas",
"click",
"colorama",
"psutil",
"numpy",
]
description = "Python toolkit for ALS point clouds."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Christiaan Meijer"},
{name = "Romulo Goncalves"},
{name = "Nicolas Renaud"},
{name = "Bouwe Andela"},
{name = "Yifat Dzigan"},
{name = "Faruk Diblen"},
{name = "Elena Ranguelova"},
{name = "Gijs van den Oord"},
{name = "Meiert W. Grootes"},
{name = "Francesco Nattino"},
{name = "Ou Ku"},
{name = "Zsófia Koma"},
]
keywords = [
"airborne laser scanning",
"machine learning",
"point cloud",
"digital terrain map",
]
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
[project.urls]
repository = "https://github.com/eEcoLiDAR/laserchicken"
documentation = "https://laserchicken.readthedocs.io"
changelog = "https://github.com/eEcoLiDAR/laserchicken/blob/master/CHANGELOG.md"
doi = "https://doi.org/10.5281/zenodo.1219422"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
]
docs = [
"sphinx",
"sphinxcontrib-bibtex",
"docutils",
"recommonmark",
]
[tool.setuptools.packages.find]
namespaces = false
[project.scripts]
laserchicken = "laserchicken.tools.cli:main"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=laserchicken --cov-report xml:coverage.xml --cov-report=term"
testpaths = [
"laserchicken",
]
[tool.coverage.run]
branch = true
source = ["laserchicken"]