-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathsetup.cfg
More file actions
59 lines (54 loc) · 1.52 KB
/
setup.cfg
File metadata and controls
59 lines (54 loc) · 1.52 KB
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
[metadata]
name = pytest-arraydiff
url = https://github.com/astropy/pytest-arraydiff
author = The Astropy Developers
author_email = astropy.team@gmail.com
license = BSD-3-Clause
license_files = LICENSE
classifiers =
Development Status :: 4 - Beta
Framework :: Pytest
Intended Audience :: Developers
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Testing
Topic :: Utilities
description = pytest plugin to help with comparing array output from tests
long_description = file: README.rst
long_description_content_type = text/x-rst
[options]
zip_safe = False
packages = find:
python_requires = >=3.9
setup_requires =
setuptools_scm
install_requires =
pytest>=5.0
numpy
# tables limitation is until 3.9.3 is out as that supports ARM OSX.
[options.extras_require]
test =
astropy
pandas
tables;platform_machine!='arm64'
[options.entry_points]
pytest11 =
pytest_arraydiff = pytest_arraydiff.plugin
[tool:pytest]
minversion = 5.0
testpaths = tests
xfail_strict = true
markers =
array_compare: for functions using array comparison
filterwarnings =
error
[flake8]
max-line-length = 150