-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
81 lines (73 loc) · 1.88 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = [
"setuptools >= 48",
"setuptools_scm[toml] >= 4",
"setuptools_scm_git_archive",
"wheel >= 0.29.0",
]
build-backend = 'setuptools.build_meta'
[project]
name="OceanColor"
dynamic = ['version']
description="Deal with NASA Ocean Color data (search and download)"
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords=["NASA", "Ocean Color", "chlorophyll", "oceanography", "matchup"]
authors = [
{email = "[email protected]"},
{name = "Guilherme Castelao"}
]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
dependencies = [
"Click >= 8.0",
"numpy >= 1.21",
"netCDF4 >= 1.5.6",
"pandas >= 1.3",
"pyproj >= 3.0",
"python-cmr ~= 0.9.0",
"requests >= 2.27",
"xarray >= 0.19",
"fsspec >= 2022.1",
"aiohttp >= 3.8.1",
]
[project.optional-dependencies]
dev = [
"black~=23.9.0",
"pyupgrade~=3.2.2",
"pre-commit~=2.20.0",
"sphinx_rtd_theme~=0.4.3"
]
parallel = [
"dask >= 2022.1",
"loky >= 2.9"
]
s3 = [
"s3fs >= 2022.1",
"zarr >= 2.10"
]
test = ["pytest", "pytest-cov>=3.0"]
[project.urls]
homepage = "https://github.com/castelao/OceanColor"
documentation = "https://oceancolor.readthedocs.io"
repository = "https://github.com/castelao/OceanColor"
[project.scripts]
"OceanColor" = "OceanColor.cli:main"
[tool.black]
line-length = 79
[tool.setuptools.packages.find]
include = ['OceanColor', 'OceanColor.*']
namespaces = false
[tool.setuptools_scm]
write_to = "OceanColor/version.py"
git_describe_command = "git describe --dirty --tags --long --match 'v*' --first-parent"