-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
62 lines (57 loc) · 1.56 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
[metadata]
name = pangeo-forge-cordex
description = "Using queries to the ESGF API to generate urls and keyword arguments for receipe generation in pangeo-forge"
long_description = file:README.md
long_description_content_type = text/markdown
maintainer = Lars Buntemeyer
maintainer_email = [email protected]
license = MIT
classifiers =
Development Status :: 1 - Planning
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Scientific/Engineering
url = https://github.com/euro-cordex/pangeo-forge-cordex
keywords = pangeo, data, esgf
[options]
zip_safe = False
python_requires = >=3.9
packages = find:
include_package_data = True
install_requires =
aiohttp
requests
recipe =
pangeo-forge-recipes = 0.9.0
esgf-pyclient
[tool:pytest]
python_files = test_*.py
testpaths = tests
filterwarnings =
ignore:numpy.ufunc size changed, may indicate binary incompatibility.:RuntimeWarning
[flake8]
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
# do not assign a lambda expression, use a def
E731
# line break before binary operator
W503
exclude=
build
docs
.git
[isort]
profile = black
skip_gitignore = true
force_to_top = true