forked from lovelysystems/robotframework-imaplibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (27 loc) · 1.06 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
#!/usr/bin/env python
from os.path import join, dirname
execfile(join(dirname(__file__), 'src', 'ImapLibrary', 'version.py'))
from distutils.core import setup
CLASSIFIERS = """
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
long_description=open(join(dirname(__file__), 'README.rst',)).read()
setup(
name = 'robotframework-imaplibrary',
version = VERSION,
description = 'Robot Framework IMAP Mail Check Library',
long_description = long_description,
author = 'Lovely Systems GmbH',
author_email = '[email protected]',
url = 'https://github.com/lovelysystems/robotframework-imaplibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing testautomation imap mail',
platforms = 'any',
zip_safe = False,
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
install_requires = ['robotframework'],
extras_require = dict(test=['zope.testing']),
packages = ['ImapLibrary'],
)