-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 1010 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 1010 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='mailinator',
version='0.1',
author='Timothy Mellor',
author_email='timothy.mellor+pip@gmail.com',
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']
)