forked from xeoron/mailinator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (30 loc) · 1.07 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='mailinator',
version='0.1',
author='Timothy Mellor',
author_email='[email protected]',
url='https://github.com/mellort/mailinator',
description='A python API for mailinator.com',
long_description=('Please see the `documentation on github '
'<https://github.com/mellort/mailinator>`_.'),
classifiers=['Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'],
license='GPLv3',
keywords=['mailinator', 'api'],
packages=['mailinator'],
scripts=['bin/mailinator'],
install_requires=[
'requests>=1.1.0',
'beautifulsoup>=3.2.1',
],
)