-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
49 lines (42 loc) · 1.08 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
[tool.poetry]
name = "net2cog"
version = "0.5.0a1"
description = "NetCDF to COG Conversion Service"
authors = ["podaac <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/podaac/net2cog"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules"
]
exclude = ['contrib', 'docs', 'tests']
packages = [
{ include = "net2cog" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
boto3 = "^1.28.3"
requests = "^2.31.0"
netcdf4 = "^1.6.4"
xarray = "^2024.7.0"
rio-cogeo = "^5.3.3"
rasterio = "^1.3.8"
rioxarray = "^0.17.0"
numpy = "^2.0.1"
harmony-service-lib = { version = "^1.0.22", optional = true }
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
flake8 = "^6.0.0"
pytest-cov = "^4.1.0"
pylint = "^2.17.4"
sphinx = "^7.0.1"
[tool.poetry.extras]
harmony = ["harmony-service-lib"]
[tool.poetry.scripts]
net2cog_harmony = 'net2cog.netcdf_convert_harmony:main'
[tool.coverage.run]
source = ['net2cog']
relative_files = true
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"