-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
81 lines (72 loc) · 1.8 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
[tool.poetry]
name = "pydropsonde"
version = "0"
repository = "https://github.com/atmdrops/pydropsonde"
documentation = "https://atmdrops.github.io/pydropsonde/"
description = "Tools to process dropsonde data"
authors = ["Geet George <geet.george@mpimet.mpg.de>"]
maintainers = [
"Helene Gloeckner <helene.gloeckner@mpimet.mpg.de>",
"Theresa Mieslinger <theresa.mieslinger@mpimet.mpg.de>",
"Nina Robbins <nina.robbins@mpimet.mpg.de>",
]
readme = "README.md"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
packages = [{include = "pydropsonde"}]
[tool.poetry.dependencies]
python = ">=3.10"
PyYAML = "*"
aiohttp = "*"
bottleneck = "*"
circle-fit = "*"
cmocean = "*"
flox = "*"
fsspec = "!=0.9.0"
llvmlite = ">=0.40"
matplotlib = "*"
moist-thermodynamics = "*"
netcdf4 = "*"
numpy = "*"
numba = ">=0.50"
numcodecs = "*"
pyproj = "*"
pandas = "*"
requests = "*"
scipy = "*"
seaborn = "*"
tqdm = "*"
xarray = "*"
xhistogram = "*"
zarr = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-watch = "*"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
[tool.poetry.scripts]
pydropsonde = 'pydropsonde.main:main'
[tool.poetry-dynamic-versioning.files."pydropsonde/_version.py"]
persistent-substitution = true
initial-content ="""
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object
version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE
__version__ = '0.0.0'
__version_tuple__ = (0, 0, 0)
"""
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"