forked from AmericanRedCross/street-view-green-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (41 loc) · 777 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
44
45
46
47
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "src"
version = "0.1.0"
description = "Mapping tree canopy cover from street level imagery."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [{ name = "The American National Red Cross" }]
classifiers = [
]
dependencies = [
"folium",
"geopandas",
"mapclassify",
"matplotlib",
"numpy",
"ruff",
"requests",
"shapely",
"typer",
"pandas",
"geopy",
"tqdm",
"python-dotenv"
]
## TOOLS ##
[tool.ruff]
src = ["src/**/*.py"]
[tool.ruff.lint]
select = [
"E", # Pyflakes
"F", # Pycodestyle
"I", # isort
]
unfixable = ["F"]
[tool.ruff.lint.isort]
known-first-party = ["src"]
force-sort-within-sections = true