-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Rename coveragerc typo, omit irrelevant files from coverage - Bump to v0.0.3
- Loading branch information
1 parent
358a9f7
commit f7e9cba
Showing
3 changed files
with
9 additions
and
2 deletions.
There are no files selected for viewing
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 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 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 |
---|---|---|
|
@@ -5,14 +5,17 @@ | |
|
||
setup( | ||
name="pysloth", | ||
version="0.0.2", | ||
version="0.0.3", | ||
packages=find_packages(exclude=["etc", "tests", "docs"]), | ||
|
||
description="Probabilistic Predictions", | ||
long_description=long_description, | ||
long_description_content_type="text/x-rst", | ||
|
||
url="https://github.com/PySloth/pysloth", | ||
author="PySloth", | ||
author_email="[email protected]", | ||
|
||
license="Apache Software License", | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
|
@@ -27,6 +30,7 @@ | |
"scikit-learn>=0.24.1", | ||
"numpy>=1.19.2", | ||
], | ||
|
||
python_requires=">=3.6", | ||
tests_require=["pytest"], | ||
setup_requires=['pytest-runner'] | ||
|