-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
35 lines (31 loc) · 990 Bytes
/
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
[tool.poetry]
name = "pyninjotiff"
version = "0.3.0"
description = "Python Ninjo TIFF writing library"
authors = ["Martin Raspaud <[email protected]>"]
license = "GPLv3"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
[tool.poetry.dependencies]
python = "^3.7"
numpy = ">=1.6"
pyproj = "^3.2.1"
pyresample = "^1.21.1"
dask = {extras = ["array"], version = "^2021.9.1"}
xarray = "^0.19.0"
trollimage = "^1.15.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true