-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
61 lines (56 loc) · 1.55 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
50
51
52
53
54
55
56
57
58
59
60
61
[project]
name = "dask-ee"
dynamic = ["version"]
description = "Google Earth Engine FeatureCollections via Dask DataFrames."
readme = "README.md"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
authors = [
{name = "Alexander Merose", email = "al@merose.com"},
{name = "Aaron Zuspan"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Scientific/Engineering :: Oceanography",
]
dependencies = [
"earthengine-api>=0.1.374",
"dask[dataframe]",
"pandas",
]
[project.optional-dependencies]
tests = [
"absl-py",
"pytest",
"pyink",
]
dev = [
"dask-ee[tests]",
"build",
]
[project.urls]
Homepage = "https://github.com/alxmrs/dask-ee"
Issues = "https://github.com/alxmrs/dask-ee/issues"
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[tool.pyink]
line-length = 80
preview = true
pyink-indentation = 2
pyink-use-majority-quotes = true
[tool.setuptools_scm]