-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
49 lines (43 loc) · 1.12 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
44
45
46
47
48
49
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
[project]
name = "googlesat"
version = "0.0.1a1"
description = "Download Sentinel 2 data from GCP"
readme = {file = "README.md", content-type='text/markdown'}
license = {text = "MIT"}
authors = [{name = "Alekos Falagas", email = "[email protected]"},]
maintainers = [{name = "Alekos Falagas", email = "[email protected]"}]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: GIS",]
requires-python = ">=3.9"
dependencies = [
"platformdirs",
"pandas",
"geopandas",
"rtree",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinxcontrib-apidoc",
"sphinxcontrib-napoleon",
"sphinx_rtd_theme",
"myst_parser",
"sphinxemoji"
]
dev = [
"pytest",
"pytest-cov",
"pytest-dependency",
"pytest-lazy-fixture",
"pytest-mock",
]