Skip to content

Commit c6bcfb3

Browse files
committed
Updating to version 1.0.1
1 parent 0be7d42 commit c6bcfb3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
import re
44
import ast
55

6+
with open("README.md", "r") as fh:
7+
long_description = fh.read()
8+
69
try:
710
from pypandoc import convert
811
read_md = lambda f: convert(f, 'rst') # noqa
@@ -24,7 +27,8 @@
2427
packages=['stackify'],
2528
url='https://github.com/stackify/stackify-api-python',
2629
description='Stackify API for Python',
27-
long_description=read_md('README.md'),
30+
long_description=long_description,
31+
long_description_content_type="text/markdown",
2832
keywords=['logging', 'stackify', 'exception'],
2933
classifiers=["Programming Language :: Python"],
3034
install_requires=[

stackify/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Stackify Python API
33
"""
4-
__version__ = '1.0.0'
4+
__version__ = '1.0.1'
55

66
import logging
77
import inspect

0 commit comments

Comments
 (0)