-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
35 lines (33 loc) · 926 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_desc = open("README.md").read()
required = ['requests']
setup(
name='PyCalendly',
version="0.0.1",
author="laxmena",
author_email="ConnectWith@laxmena.com",
license="MIT",
url="https://github.com/laxmena/PyCalendly",
download_url="https://github.com/laxmena/PyCalendly",
long_description=long_desc,
long_description_content_type="text/markdown",
description="Python wrapper for Calendly API v2",
packages=[
'calendly',
'calendly.utils'
],
include_package_data=True,
zip_safe=False,
install_requires=required,
platforms="any",
keywords="Calendly python api v2",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python"
],
python_requires=">3.6",
)