-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (25 loc) · 1.03 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
#############################################
# File Name: setup.py
# Author: Ahmed Al-Taie
# Instagram: @9_Tay
# Mail: [email protected]
# Created Time: 2020-07-26 21:41:25
# Update Time: 2022-02-10 00:29:21
#############################################
from setuptools import setup, find_packages
from mailer import __VERSION__
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(name='quick-mailer',
version=__VERSION__,
author='Ahmed Al-Taie',
author_email='[email protected]',
description='This Module help you to send fast Email.🌸',
long_description=long_description + '🌸',
long_description_content_type='text/markdown',
keywords=['smtp', 'mail', 'gmail', 'email'],
url='https://github.com/Al-Taie/quick-mailer',
packages=find_packages(),
classifiers=['Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'])