forked from mpmath/mpmath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
51 lines (51 loc) · 1.87 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
[metadata]
name = mpmath
description = Python library for arbitrary-precision floating-point arithmetic
long_description = file: README.rst
author = Fredrik Johansson
author_email = [email protected]
url = http://mpmath.org/
license = BSD
classifiers = License :: OSI Approved :: BSD License
Topic :: Scientific/Engineering :: Mathematics
Topic :: Software Development :: Libraries :: Python Modules
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
project_urls = Source = https://github.com/fredrik-johansson/mpmath
Tracker = https://github.com/fredrik-johansson/mpmath/issues
Documentation = http://mpmath.org/doc/current/
[options]
packages = find:
setup_requires = setuptools>=36.7.0
setuptools_scm>=1.7.0
tests_require = mpmath[tests]
[options.extras_require]
tests = pytest
develop = %(tests)s
pycodestyle
pytest-cov
codecov
[pycodestyle]
select = E101,W191,W291,W293,E111,E112,E113,W292,W391
exclude = .eggs,.git
[tool:pytest]
doctest_optionflags = IGNORE_EXCEPTION_DETAIL
addopts = --doctest-modules
--ignore=setup.py
--doctest-glob='*.txt'
norecursedirs = doc/source/plots demo .eggs .git
[coverage:run]
branch = True
omit = mpmath/tests/*
[coverage:report]
exclude_lines = pragma: no cover
raise NotImplementedError
return NotImplemented