-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.43 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
[build-system]
requires = ["setuptools>=77.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "cogee"
version = "1.0.3"
description = "COG EE flow - Cloud Optimized GeoTIFF registration for Google Earth Engine"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "Samapriya Roy", email = "samapriya.roy@gmail.com"}
]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"earthengine-api>=0.1.367",
"requests>=2.22.0",
"rasterio>=1.3.0",
"google-cloud-storage>=2.0.0",
"google-auth>=2.0.0",
"packaging>=20.0",
"rich>=10.0.0",
"tqdm>=4.60.0",
]
[project.urls]
Homepage = "https://github.com/samapriya/cogee"
Documentation = "https://cogee.geetools.xyz"
Repository = "https://github.com/samapriya/cogee"
Issues = "https://github.com/samapriya/cogee/issues"
[project.scripts]
cogee = "cogee.cogee:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["cogee*"]
exclude = ["tests*"]