Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
cronitor / setup.py
Size: Mime:
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as fh:
    long_description = fh.read()

setup(
    name='cronitor',
    version='4.6.0',
    packages=find_packages(),
    url='https://github.com/cronitorio/cronitor-python',
    license='MIT License',
    author='August Flanagan',
    author_email='august@cronitor.io',
    description='A lightweight Python client for Cronitor.',
    long_description = long_description,
    long_description_content_type = 'text/markdown',
    install_requires=[
        'requests',
        'pyyaml',
        'humanize',
        'urllib3'
    ],
    entry_points=dict(console_scripts=['cronitor = cronitor.__main__:main'])
)