-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.cfg
90 lines (78 loc) · 1.92 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
88
89
90
[metadata]
name = xroms
description = Package for working with ROMS output in xarray
author = Rob Hetland, Kristen Thyng, Veronica Ruiz Xomchuk
url = https://github.com/xoceanmodel/xroms
long_description_content_type = text/markdown
long_description = file: README.md
license = MIT
license_file = LICENSE
# [options]
# zip_safe = False
# install_requires =
# numpy
# xarray
# xgcm
# python_requires = >=3.6
# packages = find:
[sdist]
formats = gztar
[check-manifest]
ignore =
*.yml
*.yaml
.coveragerc
docs
docs/*
examples
examples/*
*.enc
notebooks
notebooks/*
tests
tests/*
[tool:pytest]
markers =
web: marks tests require connection (deselect with '-m "not web"')
serial: marks tests that cannot be run in parallel (deselect with '-m "not serial"')
[flake8]
max-line-length = 105
select = C,E,F,W,B,B950
ignore = E203, E501, W503
exclude = xroms/_version.py
## These need to be filled in by the author!
# For details see: https://pypi.org/classifiers/
classifiers =
Development Status :: 5 - Production/Stable
Topic :: Scientific/Engineering
Intended Audience :: Science/Research
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
# Dont change this one
License :: OSI Approved :: MIT License
## Add your email here
author_email = [email protected]
### make sure to fill in your dependencies!
[options]
install_requires =
cf_xarray
dask
# # https://github.com/h5py/h5py/issues/1880
# # https://github.com/conda-forge/h5py-feedstock/issues/92
# h5py < 3.2
netcdf4
numba >= 0.49
numpy
pooch
xarray
xgcm >= 0.8.1
setup_requires=
setuptools_scm
python_requires = >=3.6
################ Up until here
zip_safe = False
packages = find: