-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.cfg
44 lines (40 loc) · 1.09 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
[metadata]
name = monetio
version = attr: monetio.__version__
description = The Model and Observation Evaluation Toolkit (MONET) I/O package
long_description = file: README.md
url = https://github.com/noaa-oar-arl/monetio
license = MIT
author = Barry D. Baker
author_email = barry.baker@noaa.gov
maintainer = Barry D. Baker
maintainer_email = barry.baker@noaa.gov
# keywords = model, verification, hysplit, cmaq, atmosphere, camx, evaluation
[options]
zip_safe = True
packages = find:
include_package_data = True
python_requires = >=3.6
install_requires =
dask
netCDF4 # `netcdf4` on conda-forge; TODO: make optional?
pandas
s3fs # TODO: optional?
scipy # TODO: optional?
xarray
# [options.extras_require] # TODO
[options.package_data]
* = data/*.csv, data/*.tsv, data/*.txt, data/*.png
[flake8]
max-line-length = 100
ignore =
# whitespace before ':' - doesn't work well with black
E203
# module level import not at top of file
E402
# line too long - let black worry about that
E501
# line break before binary operator
W503
# missing whitespace around arithmetic operator
E226