-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (45 loc) · 1.23 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
48
49
50
51
[project]
name = "above-shrubs"
authors = [
{name = "Jordan A. Caraballo-Vega", email = "jordan.a.caraballo-vega@nasa.gov"},
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
requires-python = ">=3.7"
dynamic = ["version", "description"]
[build-system]
requires = [
"setuptools >= 40.6.0",
"setuptools_scm[toml] >= 4, <6",
"setuptools_scm_git_archive",
"setuptools-git-versioning",
"poetry",
"wheel",
"omegaconf",
"segmentation-models",
"xarray",
"rioxarray",
"numba",
"pygeotools @ git+https://github.com/dshean/pygeotools.git@master",
"tensorflow-caney @ git+https://github.com/nasa-nccs-hpda/tensorflow-caney.git@main",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "above_shrubs/version.py"
[tool.coverage.run]
branch = true
relative_files = true
source = ['above_shrubs']
omit = ['above_shrubs/version.py']
[tool.coverage.report]
show_missing = true
fail_under = 95
[tool.black]
line-length = 88
target-version = ['py38']
[project.scripts]
above-shrubs-chm-pipeline = "above_shrubs.view.chm_pipeline_cnn:main"
above-shrubs-lc-pipeline = "above_shrubs.view.landcover_pipeline_cnn:main"