-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from nschloe/modernize
Modernize
- Loading branch information
Showing
10 changed files
with
698 additions
and
75 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
comment: no |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -91,15 +91,14 @@ def build_extensions(self): | |
|
||
setup( | ||
name="accupy", | ||
version="0.3.1", | ||
version="0.3.2", | ||
packages=find_packages(), | ||
ext_modules=ext_modules, | ||
url="https://github.com/nschloe/accupy", | ||
author="Nico Schlömer", | ||
author_email="[email protected]", | ||
# importlib_metadata can be removed when we support Python 3.8+ only | ||
install_requires=[ | ||
"importlib_metadata", | ||
"importlib_metadata;python_version<'3.8'", | ||
"mpmath", | ||
"numpy", | ||
"pybind11 >= 2.5.0", | ||
|
@@ -111,7 +110,8 @@ def build_extensions(self): | |
description="Accurate sums and dot products for Python", | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
license="GPLv3+", | ||
license="GPL-3.0-or-later", | ||
license_file="LICENSE", | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[tox] | ||
envlist = py3 | ||
isolated_build = True | ||
|
||
[testenv] | ||
deps = | ||
perfplot | ||
pytest | ||
pytest-cov | ||
commands = | ||
pytest --cov {envsitepackagesdir}/accupy --cov-report xml --cov-report term |