Skip to content

Commit

Permalink
Add missing long_description_content_type to setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
asnelt committed Dec 26, 2019
1 parent daa5f76 commit 9d8970f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def __getattr__(cls, name):
# The short X.Y version.
version = u'1.2'
# The full version, including alpha/beta/rc tags.
release = u'1.2.1'
release = u'1.2.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -152,7 +152,7 @@ def __getattr__(cls, name):
# The name for this set of Sphinx documents.
# "<project> v<release> documentation" by default.
#
# html_title = u'mixedvines v1.2.1'
# html_title = u'mixedvines v1.2.2'

# A shorter title for the navigation bar. Default is the same as html_title.
#
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@

setup(
name="mixedvines",
version="1.2.1",
version="1.2.2",
description=("Package for canonical vine copula trees with mixed"
" continuous and discrete marginals."),
long_description=open('README.rst').read(),
long_description=open("README.rst").read(),
long_description_content_type="text/markdown",
keywords="copula mixed vine continuous dicrete entropy",
url="https://github.com/asnelt/mixedvines/",
author="Arno Onken",
Expand Down

0 comments on commit 9d8970f

Please sign in to comment.