-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
73 lines (63 loc) · 1.5 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "dimarray"
authors = [
{name = "Mahé Perrette", email = "[email protected]"},
]
description = "numpy array with labelled dimensions and axes, dimension, NaN handling and netCDF I/O"
readme = "README.rst"
requires-python = ">=3.7"
keywords = ['labelled array','numpy','larry','pandas']
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy>=1.7",
# 'importlib-metadata; python_version<"3.8"',
]
dynamic = ["version"]
[project.optional-dependencies]
ecosystem = ["pandas"]
netcdf = ["netCDF4"]
plot = ["matplotlib"]
[project.urls]
homepage = "https://github.com/perrette/dimarray"
documentation = "https://dimarray.readthedocs.io"
[tool.setuptools_scm]
write_to = "dimarray/_version.py"
[tool.tox]
legacy_tox_ini = """
# Tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist =
py37
py38
py39
py310
py311
[testenv]
commands = pytest --cov dimarray tests --cov-report=term
deps =
numpy
netCDF4
pytest
coverage
pytest-cov
setuptools
setuptools_scm
[gh-actions]
python =
3.7: py37
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[pytest]
norecursedirs = .tox
"""