-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
36 lines (34 loc) · 1.18 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
34
35
36
from distutils.core import setup
import rwb
setup(
name ='robotframework-workbench',
version = rwb.__version__,
author ='Bryan Oakley',
author_email ='[email protected]',
url ='https://github.com/boakley/robotframework-workbench/',
keywords = 'robotframework testing testautomation',
license ='Apache License 2.0',
description ='Tools for working with the robotframework testing framework',
long_description = open('README.txt').read(),
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
"Intended Audience :: Developers",
],
packages =[
'rwb',
'rwb.widgets',
'rwb.editor',
'rwb.runner',
'rwb.kwbrowser',
'rwb.debugger',
'rwb.logviewer',
'rwb.images',
'rwb.lib'
],
scripts =[],
)