-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
46 lines (44 loc) · 1.68 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
37
38
39
40
41
42
43
44
45
46
##########################################################################
#This file is part of WTFramework.
#
# WTFramework is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# WTFramework is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with WTFramework. If not, see <http://www.gnu.org/licenses/>.
##########################################################################
from distutils.core import setup
setup(
name='wtframework',
version='0.3.6',
author='David Lai',
author_email='[email protected]',
packages=['wtframework',
'wtframework.wtf',
'wtframework.wtf.data',
'wtframework.wtf.utils',
'wtframework.wtf.testobjects',
'wtframework.wtf.web',
'wtframework.wtf._devtools_',
'wtframework.wtf._devtools_.filetemplates',
],
scripts=['bin/wtf_init.py', 'bin/wtf_tools.py'],
url='https://github.com/wiredrive/wtframework',
license='LICENSE.txt',
description='WTF - Web Test Framework',
long_description=open('README.md').read(),
install_requires=[
"nose2>=0.4.6",
"unittest2>=0.5.1",
"ddt>=0.2.0",
"pyyaml>=3.10",
"selenium>=2.35.0",
],
)