-
Notifications
You must be signed in to change notification settings - Fork 31
/
setup.cfg
56 lines (51 loc) · 1.25 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
[metadata]
name = melodies-monet
version = attr: melodies_monet.__version__
description = MELODIES MONET unified verification package
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/NOAA-CSL/MELODIES-MONET
license = Apache 2.0
author = Rebecca Schwantes
author_email = rebecca.schwantes@noaa.gov
maintainer = Rebecca Schwantes
maintainer_email = rebecca.schwantes@noaa.gov
keywords = model, verification, air-quality, atmosphere, evaluation
[options]
zip_safe = True
packages = find:
include_package_data = True
python_requires = >=3.6
install_requires =
cartopy
matplotlib
monet
monetio
netCDF4
numpy
pandas
pyyaml
seaborn
statsmodels
xarray
[options.extras_require]
tutorial =
pooch
cli =
typer[all]
all =
%(tutorial)s
%(cli)s
[options.package_data]
* = data/*.csv, data/*.tsv, data/*.txt, data/*.png
[options.entry_points]
console_scripts =
melodies-monet = melodies_monet._cli:cli
[flake8]
max-line-length = 100
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
W503 # line break before binary operator
E226 # missing whitespace around arithmetic operator