-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
92 lines (84 loc) · 2.42 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
82
83
84
85
86
87
88
89
90
91
# License and classifier list:
# https://pypi.org/pypi?%3Aaction=list_classifiers
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "harmony-py"
description = "Python library for integrating with NASA's Harmony Services."
authors = [
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9, <4"
keywords = ["nasa", "harmony", "remote-sensing", "science", "geoscience"]
classifiers = [
'Development Status :: 3 - Alpha',
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
]
dynamic = ["version"]
dependencies = [
"python-dateutil ~= 2.8.2",
"python-dotenv ~= 0.20.0",
"progressbar2 ~= 4.2.0",
"requests ~= 2.32.3",
"sphinxcontrib-napoleon ~= 0.7",
"curlify ~= 2.2.1",
"shapely ~= 2.0.4"
]
[project.urls]
Homepage = "https://github.com/nasa/harmony-py"
Documentation = "https://harmony-py.readthedocs.io/en/main/"
Repository = "https://github.com/nasa/harmony-py.git"
[project.optional-dependencies]
dev = [
"coverage ~= 5.4",
"flake8 ~= 7.1.1",
"hypothesis ~= 6.2",
"PyYAML ~= 6.0.1",
"pytest ~= 6.2",
"pytest-cov ~= 2.11",
"pytest-mock ~= 3.5",
"pytest-watch ~= 4.2",
"responses ~= 0.25.3"
]
docs = [
"curlify ~= 2.2.1",
"Jinja2 ~= 3.1.2",
"load-dotenv ~=0.1.0",
"nbconvert ~= 7.10.0",
"progressbar2 ~= 4.2.0",
"sphinx ~= 7.1.2",
"sphinx-rtd-theme ~= 1.3.0",
"shapely ~= 2.0.4"
]
examples = [
"boto3 ~= 1.28",
"intake-stac ~= 0.4.0",
"ipyplot ~= 1.1",
"ipywidgets ~= 8.1",
"jupyterlab ~= 4.0",
"matplotlib ~= 3.8",
"netCDF4 ~= 1.6",
"numpy ~= 1.26",
"pillow ~= 10.1", # A dependency of ipyplot, pinned to avoid critical vulnerability.
"pystac ~= 1.9.0",
"rasterio ~= 1.3"
]
[tool.setuptools.dynamic]
# Will read __version__ from harmony.__init__.py
version = {attr = "harmony.__version__"}
[tool.setuptools.packages.find]
exclude = ["contrib", "docs", "tests*"]
[tool.flake8]
max-line-length = 99
ignore = ["F401", "W503"]