Skip to content

Commit

Permalink
updated descr, packaging settings, bumped up version
Browse files Browse the repository at this point in the history
  • Loading branch information
maximtrp committed Nov 20, 2024
1 parent 2630ae4 commit 1ee9ae7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
12 changes: 10 additions & 2 deletions DESCRIPTION.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,18 @@
mchmm
=====

.. image:: https://travis-ci.org/maximtrp/mchmm.svg?branch=master
:target: https://travis-ci.org/maximtrp/mchmm
.. image:: https://readthedocs.org/projects/mchmm/badge/?version=latest
:target: https://mchmm.readthedocs.io/en/latest/?badge=latest
.. image:: https://img.shields.io/github/issues/maximtrp/mchmm.svg
:target: https://github.com/maximtrp/mchmm/issues
.. image:: https://codecov.io/gh/maximtrp/mchmm/branch/master/graph/badge.svg
:target: https://codecov.io/gh/maximtrp/mchmm
.. image:: https://app.codacy.com/project/badge/Grade/d7881a827eb9473d89aa1fc10fdd855e
:target: https://www.codacy.com/gh/maximtrp/mchmm/dashboard
.. image:: https://static.pepy.tech/badge/mchmm
:target: https://pepy.tech/project/mchmm
.. image:: https://img.shields.io/pypi/v/mchmm.svg
:target: https://pypi.python.org/pypi/mchmm


*mchmm* is a Python package implementing Markov chains and Hidden Markov models in pure NumPy and SciPy.
Expand Down
2 changes: 1 addition & 1 deletion mchmm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.4.4"
__version__ = "0.4.5"
__all__ = ['MarkovChain', 'HiddenMarkovModel']

from ._hmm import * # noqa
Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "mchmm"
dynamic = ["version"]
description = "Markov chains and Hidden Markov models"
readme = "DESCRIPTION.rst"
requires-python = ">=3.6"
requires-python = ">=3.9"
keywords = ["statistics", "markov chains", "hidden markov models"]
license.file = "LICENSE"
authors = [{ name = "Maksim Terpilovskii", email = "maximtrp@gmail.com" }]
Expand All @@ -20,13 +20,11 @@ classifiers = [
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
urls.homepage = "https://github.com/maximtrp/mchmm"
urls.documentation = "https://mchmm.rtfd.io"
Expand Down

0 comments on commit 1ee9ae7

Please sign in to comment.