-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (71 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (71 loc) · 1.59 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
[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 = "kyle@hobu.co" },
{ name = "Howard Butler", email = "howard@hobu.co" }
]
maintainers = [
{ name = "Kyle Mann", email = "kyle@hobu.co" }
]
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.ruff]
line-length = 80
exclude = [
".git",
".github",
".mypy_cache",
".vscode",
"build",
"docs"
]
[tool.ruff.format]
quote-style = "single"
indent-style = "space"
docstring-code-format = true
[tool.ruff.lint]
select=[
"A",
"B",
"D101",
"D201",
"E",
"F",
"ISC",
"RUF"
]
[tool.ruff.lint.pycodestyle]
max-line-length = 80
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]
"**/{tests,docs,tools}/*" = ["E402"]
"**/{tests}/*" = ["D101"]
[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"
]