-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.cfg
61 lines (56 loc) · 1.58 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
[metadata]
name = gappy-system
author = E. Madison Bray
author_email = [email protected]
description = Python interface to GAP
url = https://github.com/embray/gappy
long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst
license = GPLv3+
license_files = LICENSE
platform = linux
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Education
Intended Audience :: Science/Research
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: POSIX :: Linux
Programming Language :: Cython
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Topic :: Scientific/Engineering :: Mathematics
[options]
# We set packages to find: to automatically find all sub-packages
packages = find:
python_requires = >=3.7
setup_requires = setuptools_scm
install_requires =
cysignals
psutil
[options.packages.find]
exclude = gappy._dev
[options.package_data]
gappy = *.pxd, *.pyx
[options.extras_require]
tests =
numpy
pytest
pytest-cython>=0.1.1
pytest-doctestplus
setuptools_scm
docs =
Sphinx
[tool:pytest]
addopts =
-m 'not long'
--doctest-cython
--doctest-modules
--doctest-plus
doctest_optionflags = NORMALIZE_WHITESPACE ELLIPSIS
# 1) ignore warning that can come from older versions of virtualenv
# 2) ignore warning from setuptools_scm when running on CI
filterwarnings =
ignore:Using or importing the ABCs from 'collections'
ignore:.*is shallow and may cause errors
markers =
long: mark a test as taking a long time