forked from svyzz/robotframework-randomlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 679 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
DESCRIPTION = """
This repository details a collection of random utilities that can be used within tests written using RobotFramework
"""[1:-1]
setup(
name = 'robotframework-random',
version = '0.1.4',
author = 'Arun Venkatram',
author_email = 'stuxnetting@gmail.com',
packages = ['src', 'tests'],
url = 'https://github.com/svyzz/robotframework-random',
license = 'LICENSE.txt',
keywords = 'robotframework testing test automation random arun',
description = DESCRIPTION,
long_description = open('README.txt').read(),
install_requires = [
"requests >= 2.0.0",
"yolk >= 0.4.3",
],
)