Files
mpmath--mpmath/setup.cfg
T
Sergey B Kirpichev c4d2491634 Enable coverage testing, report with codecov
We run coverage tests only in py3.6
2018-12-23 17:21:50 +03:00

47 lines
1.7 KiB
INI

[metadata]
name = mpmath
description = Python library for arbitrary-precision floating-point arithmetic
version = 1.1.0
long_description = file: README.rst
author = Fredrik Johansson
author_email = fredrik.johansson@gmail.com
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.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
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
[tool:pytest]
addopts = --doctest-modules
--ignore=setup.py
--doctest-glob='*.txt'
norecursedirs = doc/source/plots demo
[coverage:run]
branch = True
omit = mpmath/tests/*