-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (83 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (83 loc) · 1.59 KB
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
[project]
name = "cacafo"
version = "0.1.0"
authors = [
{ name = "Varun Magesh", email = "vim@law.stanford.edu" },
{ name = "Nic Rothbacher", email = "nsroth@law.stanford.edu" },
]
description = "A pipeline to build a dataset of CAFOs in California"
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.10"
dependencies = [
"isort",
"gsheets",
"pydrive2",
"pathlib",
"diskcache",
"gdown",
"tqdm",
"pandas",
"peewee",
"psycopg2",
"dtlpy",
"geopandas",
"geopy",
"shapely",
"numpy",
"networkx",
"matplotlib",
"seaborn",
"rasterio",
"rapidfuzz",
"requests",
"statsmodels",
"scipy",
"google-cloud-storage",
"google-cloud-core",
"pillow",
"mercantile",
"contextily",
"sshtunnel",
"scikit-learn",
"rl @ git+https://github.com/ProbablyFaiz/rl.git",
"rich",
"rich-click",
"matplotlib-scalebar",
"alembic>=1.13.2",
"geoalchemy2>=0.15.2",
"ruff>=0.6.4",
"pgcli>=4.1.0",
"pyproj>=3.6.1",
"more-itertools>=10.5.0",
"thefuzz>=0.22.1",
"visidata>=3.1.1",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"black[d]",
"ipdb",
"ipython",
"ruff",
"pgcli",
"visidata>=3.1.1",
]
[project.urls]
homepage = "https://github.com/reglab/cacafo"
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cacafo"]
[tool.isort]
profile = "black"
src_paths = ["cacafo"]
skip_gitignore = true
[project.scripts]
calf = "cacafo.cli:cli"