-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (83 loc) · 2.09 KB
/
pyproject.toml
File metadata and controls
95 lines (83 loc) · 2.09 KB
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
92
93
94
95
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "adapt"
version = "0.2.0"
description = "Adaptive Radar Data Processing Platform - Modular NEXRAD analysis for storm cell detection and motion projection"
readme = "README.md"
requires-python = ">=3.8"
authors = [
{name = "Bhupendra Raut", email = "raut2@llnl.gov"},
]
keywords = ["radar", "NEXRAD", "weather", "cell-detection", "optical-flow"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Atmospheric Science",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy",
"xarray",
"pandas",
"scipy",
"scikit-image",
"matplotlib",
"h5py",
"netCDF4",
"tqdm",
"pydantic>=2.0",
"arm_pyart",
"opencv-python",
"nexradaws",
"cartopy>=0.21",
"contextily",
"pyproj",
"pyarrow",
]
[project.urls]
Homepage = "https://github.com/RBhupi/adapt"
Repository = "https://github.com/RBhupi/adapt.git"
Issues = "https://github.com/RBhupi/adapt/issues"
[project.scripts]
adapt = "adapt.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"adapt.data" = ["user_config.py"]
"adapt.schemas" = ["*.sql"]
"adapt.config" = ["*.yaml"]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-cov",
"xarray",
"numpy",
"arm_pyart",
]
docs = [
"sphinx>=4.0",
"sphinx-rtd-theme>=1.0",
"sphinx-autodoc-typehints",
]
[tool.pytest.ini_options]
addopts = "-ra --strict-markers"
testpaths = ["tests"]
minversion = "7.0"
markers = [
"unit: fast unit tests (no IO)",
"pipeline: pipeline tests with mocks",
"integration: tests requiring real or on-disk data",
"slow: long-running tests",
]
[tool.coverage.run]
branch = true
source = ["src/adapt"]
[tool.coverage.report]
ignore_errors = true
precision = 2