-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
76 lines (76 loc) · 2.25 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
[metadata]
name = gmpy_ctypes
version = attr: setuptools_scm.get_version
description = GMP ctypes wrapper
keywords = PyPy, GMP
license = LGPL-3.0+
author = Sergey B Kirpichev
author_email = [email protected]
classifiers = Development Status :: 2 - Pre-Alpha
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Scientific/Engineering :: Mathematics
[options]
zip_safe = True
packages = find:
python_requires = >=3.5
setup_requires = setuptools>=36.7.0
setuptools_scm
pip>=9.0.1
pytest-runner
isort
tests_require = gmpy_ctypes[develop]
[options.extras_require]
tests = pytest>=3.10.1
hypothesis
develop = %(tests)s
flake8>=2.5.5,!=3.1.0
flake8-docstrings>=1.2.0
pep8-naming
flake8-comprehensions
flake8-isort
pytest-xdist>=1.22.4
pytest-cov
astroid<=2.0.4
pylint<=2.1.1
coverage
pytest-runner
isort
codecov
[aliases]
test = pytest
[flake8]
ignore = D102,D103,D105,N801
max-line-length = 7000
exclude = build,.eggs,.git,*.rst,*.cfg,*.yml
jobs = 1
per-file-ignores = */__init__.py:F401
[tool:pytest]
minversion = 2.7.0
doctest_optionflags = ELLIPSIS NORMALIZE_WHITESPACE IGNORE_EXCEPTION_DETAIL
addopts = --durations=20
-r X
--doctest-glob='*.rst'
norecursedirs = build .eggs .git
xfail_strict = true
filterwarnings = ignore::UserWarning
error::DeprecationWarning
[coverage:run]
branch = True
omit = tests/*
[coverage:html]
directory = build/coverage/html
[coverage:report]
exclude_lines = pragma: no cover
raise NotImplementedError
return NotImplemented
[isort]
lines_after_imports = 2
atomic = True