kevteg/calendly-python

View on GitHub
setup.py

Summary

Maintainability
A
0 mins
Test Coverage
from setuptools import setup
import sys
import os


def readme():
    with open('README.md') as f:
        return f.read()

setup(
    name='calendly',
    version='1.1.1',
    description="A Python wrapper for the Calendly API  (https://developer.calendly.com/docs/)",
    long_description=readme(),
    long_description_content_type="text/markdown",
    classifiers=[
        "License :: OSI Approved :: MIT License",
        "Programming Language :: Python :: 3.4",
        "Programming Language :: Python :: 3.5",
        "Programming Language :: Python :: 3.6",
        "Programming Language :: Python :: 3.7"
    ],
    keywords='Calendly python api',
    url='https://github.com/kevteg/calendly-python',
    author='kevteg',
    author_email='kevteg05@gmail.com',
    license='MIT',
    packages=[
        'calendly',
        'calendly.utils',
    ],
    install_requires=[
        'requests'
    ],
    test_suite='nose.collector',
    tests_require=['nose'],
    include_package_data=True,
    zip_safe=False
)