forked from zhangyunhao116/zmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (39 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
import os
import sys
from setuptools import setup, find_packages
PROJECT_NAME = 'zmail'
MODULE_NAME = 'zmail'
# 'setup.py publish' shortcut.
if sys.argv[-1] == 'publish':
os.system('pip3 install twine')
os.system('pip3 install wheel')
os.system('python3 setup.py sdist bdist_wheel')
os.system('twine upload dist/*')
os.system('rm -rf build dist .egg zmail.egg-info')
sys.exit()
setup(
name='zmail',
version='0.1.3',
author='ZYunH',
description='Zmail allows you to send and get emails as possible as it can be in python',
long_description='Zmail allows you to send and get emails as possible as it can be in python.There is no need to check server address or make your own MIME string.With zmail, you only need to care about your mail content.',
keywords='email python3 package',
url='https://github.com/ZYunH/zmail',
license="MIT Licence",
platforms='all',
classifiers=(
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Libraries :: Python Modules'
),
packages=find_packages(),
include_package_data=True,
)