-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
41 lines (38 loc) · 1.27 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
from setuptools import setup
from codecs import open
with open('README.rst', 'r', 'utf-8') as f:
readme = f.read()
with open('HISTORY.rst', 'r', 'utf-8') as f:
history = f.read()
setup(
name='python-guerrillamail',
version='0.2.0',
description='Client for the Guerrillamail temporary email server',
long_description=readme + '\n\n' + history,
keywords='guerrillamail email client cli',
author='Nathan Jones',
url='https://github.com/ncjones/python-guerrillamail',
py_modules=['guerrillamail'],
install_requires=[
'requests',
],
license='GPL3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
entry_points={
'console_scripts': [
'guerrillamail=guerrillamail:main',
],
}
)