We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8920202 commit 955bae8Copy full SHA for 955bae8
setup.py
@@ -1,14 +1,19 @@
1
from setuptools import setup, find_packages
2
3
+with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
setup(
7
name='cronitor',
- version='4.4.0',
8
+ version='4.4.1',
9
packages=find_packages(),
10
url='https://github.com/cronitorio/cronitor-python',
11
license='MIT License',
12
author='August Flanagan',
13
author_email='[email protected]',
14
description='A lightweight Python client for Cronitor.',
15
+ long_description = long_description,
16
+ long_description_content_type = 'text/markdown',
17
install_requires=[
18
'requests',
19
'pyyaml',
0 commit comments