-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (30 loc) · 1.01 KB
/
setup.py
File metadata and controls
30 lines (30 loc) · 1.01 KB
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
from setuptools import setup, find_packages
import io
import os
current = os.path.realpath(os.path.dirname(__file__))
with io.open(os.path.join(current, 'README.md'), encoding="utf-8") as f:
long_description = f.read()
setup(
name='climailsystem',
version='0.111',
author = 'Akshit Ahuja',
author_email = "techsyapa@gmail.com",
description = "A small Package for sending and receiving mails from cli",
url = "https://github.com/aksh45/climailsystem",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['sendmail'],
include_package_data=True,
install_requires=[
'Click','pybase64','google-api-python-client','google-auth-httplib2','google-auth-oauthlib','mail-parser'
],
entry_points='''
[console_scripts]
climail=sendmail.__main__:main
''',
)