-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (47 loc) · 1.44 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
52
53
[project]
name = "senegal-lcluc-tensorflow"
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"]
[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 = "senegal_lcluc_tensorflow/version.py"
[tool.coverage.run]
branch = true
relative_files = true
source = ['senegal_lcluc_tensorflow']
omit = ['senegal_lcluc_tensorflow/version.py']
[tool.coverage.report]
show_missing = true
fail_under = 95
[tool.black]
line-length = 88
target-version = ['py38']
[project.scripts]
landcover-cnn-pipeline = "senegal_lcluc_tensorflow.view.landcover_cnn_pipeline_cli:main"
landuse-cnn-pipeline = "senegal_lcluc_tensorflow.view.landuse_cnn_pipeline_cli:main"
composite-pipeline = "senegal_lcluc_tensorflow.view.composite_pipeline_cli:main"
tappan-pipeline = "senegal_lcluc_tensorflow.view.tappan_pipeline_cli:main"