forked from xarray-contrib/pint-xarray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
40 lines (38 loc) · 1.23 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
[metadata]
name = pint-xarray
author = Tom Nicholas
author_email = [email protected]
description = Physical units interface to xarray using Pint
url = https://github.com/xarray-contrib/pint-xarray
project_urls =
Documentation=https://pint-xarray.readthedocs.io/en/stable
long_description = file: README.md
long_description_content_type = text/markdown
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Science/Research
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
[options]
packages = find:
python_requires = >=3.7
install_requires =
numpy >= 1.17
xarray >= 0.16.1
pint >= 0.16
importlib-metadata; python_version < "3.8"
[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