-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (71 loc) · 2.04 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
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "coral-annotation-tool"
version = "1.0.30"
description = "CAT: Coral Annotation Tool. A file-based(JSON) Structure from Motion (SfM) orthomosaic annotation tool for coral reef research"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "MIT"}
keywords = ["coral", "annotation", "geotiff", "cog", "orthomosaic", "marine-biology", "gis"]
authors = [
{name = "Michael Akridge"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"fastapi>=0.100.0",
"uvicorn[standard]>=0.23.0",
"titiler.core>=0.15.0",
"titiler.extensions>=0.15.0",
"rasterio>=1.3.0",
"rio-cogeo>=5.0.0",
"python-multipart>=0.0.6",
"aiofiles>=23.0.0",
"pydantic>=2.0.0",
"numpy>=1.24.0",
"geopandas>=0.14",
"pyogrio>=0.7",
"rtree>=1.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
]
shortcuts = [
"pyshortcuts>=1.9.0",
]
[project.urls]
Homepage = "https://github.com/MichaelAkridge-NOAA/cat"
Documentation = "https://github.com/MichaelAkridge-NOAA/cat#readme"
Repository = "https://github.com/MichaelAkridge-NOAA/cat"
"Bug Tracker" = "https://github.com/MichaelAkridge-NOAA/cat/issues"
[project.scripts]
cat = "cat.cli:main"
cat-server = "cat.cli:main"
cat-convert = "cat.cli:convert_cog"
cat-batch-convert = "cat.cli:batch_convert"
cat-create-shortcuts = "cat.shortcuts:main_create"
cat-remove-shortcuts = "cat.shortcuts:main_remove"
[tool.setuptools]
packages = ["cat", "cat.api"]
[tool.setuptools.package-data]
cat = [
"web/*.html",
"docs/*.png",
"docs/*.ico",
"data/reference/*.csv",
]