-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (23 loc) · 901 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
from setuptools import setup, find_packages
setup(name='hubcheck',
version='1.0.0',
description='tools to perform user level automation and testing against the HUBzero Platform',
author='Derrick Kearney',
author_email='telldsk at gmail dot com',
packages = find_packages(),
# install_requires=['requests>=1.1.0',
# 'crypto>=2.6.1',
# 'paramiko>=1.15.2',
# 'pytest>=2.7.1',
# 'EasyProcess>=0.1.9',
# 'pyvirtualdisplay>=0.1.5',
# 'selenium>=2.46.0',
# 'browsermob-proxy>=0.7.0',
## 'pyppp>=1.0',
# ],
scripts=['bin/hctestrunner',
'bin/tdedit',
'bin/register_account',
],
include_package_data=True,
)