-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (42 loc) · 1.46 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
[project]
name = "polder"
description = "A simple web service to create maps and viewer using eoAPI"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Emmanuel Mathot", email = "[email protected]"},
{name = "Ricardo Mestre", email = "[email protected]"},
{name = "Daniel Da Silva", email = "[email protected]"},
{name = "Ciaran Sweet", email = "[email protected]"},
{name = "Olaf Veerman", email = "[email protected]"},
{name = "Felix Delattre", email = "[email protected]"},
]
keywords = [
"COG",
"STAC",
"MosaicJSON",
"Fastapi",
"eoAPI"
]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: GIS",
]
version="0.2.0"
dependencies = [
]
[project.urls]
Homepage = 'https://developmentseed.org/polder/'
Documentation = "https://developmentseed.org/polder/"
Issues = "https://github.com/developmentseed/polder/issues"
Source = "https://github.com/developmentseed/polder"
Changelog = "https://developmentseed.org/polder/release-notes/"