-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
30 lines (29 loc) · 982 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
import setuptools
setuptools.setup(
name="simplegmail",
version="4.1.1",
url="https://github.com/jeremyephron/simplegmail",
author="Jeremy Ephron",
author_email="jeremye@cs.stanford.edu",
description="A simple Python API client for Gmail.",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
install_requires=[
'google-api-python-client>=1.7.3',
'beautifulsoup4>=4.0.0',
'python-dateutil>=2.8.1',
'oauth2client>=4.1.3',
'lxml>=4.4.2'
],
setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)