forked from remo-rcm/pyremo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
87 lines (80 loc) · 2.28 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
[metadata]
name = pyremo
author = pyremo Developers
author_email = [email protected]
license = MIT
description = data analytics, processing and plotting for regional climate model REMO.
long_description_content_type=text/x-rst
long_description = See https://pyremo.readthedocs.io
url = https://github.com/remo-rcm/pyremo
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Atmospheric Science
Topic :: Scientific/Engineering :: GIS
[options]
packages = find:
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
include_package_data = True
python_requires = >=3.7
install_requires =
numpy >= 1.17
pooch >= 1.0
setuptools >= 40.4 # for pkg_resources
xarray >= 0.15
py-cordex >= 0.3.0
[options.extras_require]
io =
netCDF4
h5netcdf
#preproc =
# pyintorg @ git+https://gitlab.dkrz.de/remo/[email protected]
#prsint =
# pydruint @ git+https://gitlab.dkrz.de/remo/[email protected]
[options.entry_points]
console_scripts =
pyremo-analysis = pyremo.cli:main_analysis
prsint = pyremo.cli:prsint
pradd-vars = pyremo.cli:add_variables
[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
[coverage:run]
omit =
*/tests/*
*/pyremo/core/data_handler.py
*/pyremo/core/exp.py
*/pyremo/core/file_conventions.py
*/pyremo/analysis/*
*/pyremo/archive/*