-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
87 lines (74 loc) · 2 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
[project]
name = "pydropsonde"
repository = "https://github.com/atmdrops/pydropsonde"
documentation = "https://atmdrops.github.io/pydropsonde/"
description = "Tools to process dropsonde data"
authors = [{name="Geet George", email= "geet.george@mpimet.mpg.de"}]
maintainers = [
{name="Helene Gloeckner", email="helene.gloeckner@mpimet.mpg.de"},
{name="Theresa Mieslinger", email="theresa.mieslinger@mpimet.mpg.de"},
{name="Nina Robbins", email="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"}]
requires-python = ">3.10"
dynamic=["version"]
dependencies = [
"PyYAML",
"aiohttp",
"bottleneck",
"circle-fit",
"flox",
"fsspec!=0.9.0",
"llvmlite>=0.40",
"moist-thermodynamics",
"netcdf4",
"numpy",
"numba>=0.50",
"numcodecs",
"pyproj",
"pandas",
"requests",
"scipy",
"tqdm",
"xarray",
"xhistogram",
"zarr (>2.0.0,<3.0.0)",
]
[tool.poetry]
version = "0.0.0"
[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.requires-plugins]
poetry-dynamic-versioning = { version = ">=1.0.0,<2.0.0", extras = ["plugin"] }
[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"