-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (39 loc) · 977 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "naip_cnn"
dynamic = ["version"]
description = "Modeling forest attributes from aerial imagery using CNNs"
readme = "README.md"
license = ""
requires-python = ">=3.8"
authors = [
{ name = "Aaron Zuspan", email = "aaron.zuspan@oregonstate.edu" },
{ name = "Adam Sibley", email = "adam.sibley@oregonstate.edu" }
]
dependencies = [
"tensorflow",
"tensorflow-io",
"earthengine-api",
"rasterio",
"scikit-learn",
"matplotlib",
"numpy",
"pandas",
"plotly",
"h5py",
"dask[distributed]",
"bokeh",
"ipykernel",
"pre-commit",
]
[tool.hatch.version]
path = "src/naip_cnn/__init__.py"
[tool.ruff]
target-version = "py38"
select = ["E", "I", "F", "B", "FA", "UP", "ISC", "PT", "NPY", "Q", "RET", "SIM", "PERF"]
fix = true
show-fixes = true
[tool.ruff.isort]
known-first-party = ["naip_cnn"]