-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
94 lines (86 loc) · 1.6 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
[options]
packages = find_namespace:
package_dir =
= .
include_package_data = True
exclude = './binder, ./docs, ./.github, ./examples, ./local_work, ./__pycache__, ./.coveragerc'
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
[options.packages.find]
where = virtualargofloat
install_requires =
numpy >= 1.18
pandas >= 1.1
xarray >= 2022.12
parcels >= 3.0.0
zarr >= 2.13.3
tqdm >= 4.64.1
[options.extras_require]
io =
netCDF4
h5netcdf
scipy
gcsfs
numcodecs
cftime
cfgrib
lz4
python-blosc
nomkl
erddapy
argopy
gitpython
accel =
scipy
bottleneck
numbagg
distributed
viz =
matplotlib
seaborn
nc-time-axis
nbserverproxy
jupyter
jupyterlab>=0.35
jupyterlab_launcher
jupyter_client
jupyter_server
nb_conda_kernels
ipykernel
ipywidgets
graphviz
nodejs
scikit-image
scikit-learn
watermark
shapely
cartopy>=0.19.0
cmocean
progressbar
cgen
pymbolic
regionmask
complete =
%(io)s
%(accel)s
%(viz)s
docs =
%(complete)s
sphinx-autosummary-accessors
sphinx_rtd_theme
sphinx_book_theme
sphinx_issues
ipython
ipykernel
jupyter-client
nbsphinx
scanpydoc
[flake8]
ignore =
E203 # whitespace before ':' - doesn't work well with black
E402 # module level import not at top of file
E501 # line too long - let black worry about that
E731 # do not assign a lambda expression, use a def
W503 # line break before binary operator
exclude=
.eggs
docs