-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 898 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
from setuptools import setup
setup(
name="pyioga",
version="0.1.1",
description="Python IMAP OAuth2 Gmail Authenticator Helper",
url="https://github.com/mbroton/pyioga",
author="Michal Broton",
author_email="[email protected]",
license="GPL-3.0",
packages=["pyioga"],
install_requires=[
"google-api-python-client>=2.49.0",
"google-auth>=2.6.6",
"google-auth-oauthlib>=0.5.1",
"google-auth-httplib2>=0.1.0",
"click>=8.1.3",
],
entry_points={
"console_scripts": ["pyioga=pyioga.__main__:cli"],
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Email :: Post-Office :: IMAP",
],
)