-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
96 lines (87 loc) · 2 KB
/
setup.cfg
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
96
[metadata]
name = OpenMosaic
description = Open-source and extensible NEXRAD mosaic creation and feature extration in Python
long_description = file: README.md
long_description_content_type = text/markdown
author = OpenMoasic Developers
author_email = [email protected]
maintainer = Jon Thielen
maintainer_email = [email protected]
license = Apache
license-file = LICENSE
classifiers =
Development Status :: 1 - Planning
Programming Language :: Python
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Atmospheric Science
Intended Audience :: Science/Research
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
url = https://github.com/jthielen/OpenMosaic
[options]
zip_safe = True
package_dir =
= src
packages = find:
include_package_data = True
setup_requires =
setuptools >= 41.2
setuptools_scm
python_requires = >=3.8
install_requires =
setuptools >= 41.2
numpy >= 1.19
xarray >= 0.16.2
pandas >= 1.1
zarr >= 2.4
dask >= 2020.12.0
arm-pyart >= 1.12.2
requests >= 2.25.1
numba >= 0.54.1
scikit-learn
joblib
tqdm
fsspec[http]
s3fs
geopandas>=0.9.0
pyproj>=3.0.1
mypy_extensions >= 0.4.2
[options.packages.find]
where = src
[options.extras_require]
dev = ipython[all]>=3.1
doc = sphinx; pydata-sphinx-theme; matplotlib>=3.2.2; netCDF4 >= 1.5.3
test = pytest>=5.4.3; flake8>=3.8.3; blue; isort>=5.0.7; netCDF4 >= 1.5.3
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all-files = True
[pycodestyle]
max-line-length = 95
[flake8]
max-line-length = 95
ignore =
E203
E402
E501
E731
W503
exclude=
.eggs
docs
[isort]
default_section = THIRDPARTY
known_first_party = openmosaic
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
line_length = 95
[tool:pytest]
python_files = test_*.py
testpaths = tests
[blue]
line-length = 95