-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
96 lines (89 loc) · 1.87 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
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
89
90
91
92
93
94
95
96
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "cyfi"
version = "1.1.3"
authors = [
{name = "DrivenData", email = "[email protected]"}
]
description = "Estimate cyanobacteria density in small, inland water bodies using Sentinel-2 satellite imagery."
readme = "README.md"
license = { file = "LICENSE" }
keywords = [
"cyanobacteria",
"harmful algal blooms",
"HABs",
"sentinel-2",
"satellite imagery",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"cloudpathlib[s3]>=0.4.1",
"geopandas",
"geopy",
"GitPython",
"gradio",
"lightgbm",
"loguru",
"matplotlib<3.8.0",
"numpy",
"odc-stac",
"opencv-python",
"pandas",
"planetary-computer",
"platformdirs",
"plotly",
"pydantic>=2.0",
"pystac",
"pystac-client",
"scikit-learn",
"seaborn",
"repro-zipfile",
"rioxarray",
"tqdm",
"typer",
"xarray[accel,io,parallel]"
]
[project.optional-dependencies]
dev = [
"build",
"black",
"flake8",
"jupyter",
"mkdocs",
"mkdocs-bootswatch",
"pytest",
"pytest-cov",
"pytest_mock"
]
[project.urls]
"Repository" = "https://github.com/drivendataorg/cyfi"
"Documentation" = "https://cyfi.drivendata.org/"
"Bug Tracker" = "https://github.com/drivendataorg/cyfi/issues"
"Changelog" = "https://cyfi.drivendata.org/changelog/"
[tool.black]
line-length = 99
target-version = ['py310', 'py311']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.venv
)/
'''
[project.scripts]
cyfi = "cyfi.cli:app"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov=cyfi --cov-report=term --cov-report=html --cov-report=xml"
testpaths = ["tests"]
[tool.coverage.run]
source = ["cyfi"]