Skip to content

Commit

Permalink
Release v0.0.3 (#14)
Browse files Browse the repository at this point in the history
- Rename coveragerc typo, omit irrelevant files from coverage
- Bump to v0.0.3
  • Loading branch information
leonarduschen authored Apr 7, 2021
1 parent 358a9f7 commit f7e9cba
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .coveragearc → .coveragerc
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ exclude_lines =
ignore_errors = True
omit =
tests/*
docs/*
etc/*
setup.py

[html]
directory = coverage_html_report
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pysloth
=======
A Python package for Probabilistic Prediction

v0.0.2
v0.0.3

Installation
------------
Expand Down
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -27,6 +30,7 @@
"scikit-learn>=0.24.1",
"numpy>=1.19.2",
],

python_requires=">=3.6",
tests_require=["pytest"],
setup_requires=['pytest-runner']
Expand Down

0 comments on commit f7e9cba

Please sign in to comment.