-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
39 lines (36 loc) · 1.25 KB
/
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
"""Setup file."""
from setuptools import setup, find_packages
from gmail_api_wrapper.version import __version__
from gmail_api_wrapper.utils import read_file
VERSION = __version__
README = read_file('README.rst', package_level=False)
name = 'gmail-api-wrapper'
setup(
name=name,
version=VERSION,
license='MIT',
description='Gmail API Wrapper - Python Client',
long_description=README,
author='Denis Karanja',
author_email='[email protected]',
url='https://github.com/yoda-yoda/gmail-api-wrapper/',
keywords=['gmail-api-wrapper', 'gmail python client'],
packages=find_packages(exclude=['tests', ]),
install_requires=[
'google-api-python-client',
'python-dateutil',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
include_package_data=True,
)