-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.py
30 lines (26 loc) · 917 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
CLASSIFIERS = """
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
from os.path import join, dirname
long_description = open(join(dirname(__file__), 'README.rst',)).read()
setup(
name='robotframework-httplibrary',
version="0.4.2",
description='Robot Framework keywords for HTTP requests',
long_description=long_description,
author='Filip Noetzel',
author_email='filip+rfhttplibrary@j03.de',
url='https://github.com/peritus/robotframework-httplibrary',
license='Beerware',
keywords='robotframework testing testautomation web http webtest',
platforms='any',
zip_safe=False,
classifiers=CLASSIFIERS.splitlines(),
package_dir={'': 'src'},
install_requires=['robotframework', 'webtest>=2.0', 'jsonpatch',
'jsonpointer'],
packages=['HttpLibrary']
)