-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 933 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
31
32
33
34
35
from setuptools import setup
import sys
def readme():
with open('README.md') as f:
return f.read()
version="0.2.1"
setup(name='stf',
version=version,
description='The simple test framework',
long_description=readme(),
keywords='automation test',
url='https://github.com/nokia',
download_url="https://github.com/nokia/STF/archive/{0}.tar.gz".format(version),
author='Gemfield',
author_email='[email protected]',
license='Apache License, Version 2.0',
packages=['stf'],
scripts=[
'stf/bin/stf',
'stf/bin/iniParser.py'
],
install_requires=[
'paramiko>=2.1',
'scp',
'colorlog',
'subprocess32'
],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Topic :: Software Development :: Testing"
],
include_package_data=True,
zip_safe=False)