-
Notifications
You must be signed in to change notification settings - Fork 32
/
setup.cfg
60 lines (53 loc) · 1.03 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
[metadata]
name = nco
description = python bindings to NCO
version = 1.1.2
long_description = file: README.md
long_description_content_type = text/markdown
author = Joe Hamman
author_email = jhamman@ucar.edu
keywords = netcdf, climate
license = MIT
classifiers =
Development Status :: 4 - Beta
Topic :: Utilities
Operating System :: POSIX
Programming Language :: Python
project_urls =
Source = https://github.com/nco/pynco
Documentation = https://pynco.readthedocs.org
[options]
packages = find:
python_requires = >=3.8
install_requires =
numpy
packaging
[options.packages.find]
include =
nco*
exclude =
tests*
[tox:tox]
requires =
# tox-conda does not yet support tox 4
# https://github.com/tox-dev/tox-conda/issues/156
tox < 4
tox-conda
envlist =
py38
py39
py310
py311
py312
isolated_build = true
[testenv]
conda_env =
py38: ci/requirements-3.8.yml
py39: ci/requirements-3.9.yml
py310: ci/requirements-3.10.yml
py311: ci/requirements-3.11.yml
py312: ci/requirements-3.12.yml
conda_deps =
nco
commands=
pytest -vv {posargs}