-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
39 lines (36 loc) · 1020 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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
)