-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.cfg
49 lines (42 loc) · 888 Bytes
/
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
[metadata]
name = gridded
version = attr: gridded.__version__
description = Unified API for working with results from (Met/Ocean) models on various grid types
long_description = file: README.rst
author =
Chris Barker
Jay Hennen
url = https://github.com/NOAA-ORR-ERD/gridded
download_url = https://github.com/NOAA-ORR-ERD/gridded
author_email = chris.barker@noaa.gov
[options]
include_package_data = True
python_requires = >=3.8
install_requires =
numpy
netCDF4
tests_require =
pytest
[options.packages.find]
exclude =
examples*
docs*
[options.package_data]
* = *.txt, *.rst, *.nc, *.cdl
test_data =
tests/test_data/*,
tests/test_data/cdl/*,
tests/test_ugrid/files/*
[flake8]
max-line-length = 120
extend-ignore =
# imports not in alphabetical order (time, os)
H306
exclude =
.git
__pycache__
docs
source
conf.py
build
dist