Skip to content

Commit 955bae8

Browse files
committed
add project description
1 parent 8920202 commit 955bae8

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
from setuptools import setup, find_packages
22

3+
with open("README.md", "r", encoding="utf-8") as fh:
4+
long_description = fh.read()
5+
36
setup(
47
name='cronitor',
5-
version='4.4.0',
8+
version='4.4.1',
69
packages=find_packages(),
710
url='https://github.com/cronitorio/cronitor-python',
811
license='MIT License',
912
author='August Flanagan',
1013
author_email='[email protected]',
1114
description='A lightweight Python client for Cronitor.',
15+
long_description = long_description,
16+
long_description_content_type = 'text/markdown',
1217
install_requires=[
1318
'requests',
1419
'pyyaml',

0 commit comments

Comments
 (0)