forked from vkosuri/robotframework-ncclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (37 loc) · 1.34 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import abspath, dirname, join
version_file = join(dirname(abspath(__file__)), 'src', 'NcclientLibrary', 'version.py')
with open(version_file) as file:
code = compile(file.read(), version_file, 'exec')
exec(code)
DESCRIPTION = """
Robot Framework keyword library wrapper NETCONF client.
"""[1:-1]
CLASSIFIERS = """
Development Status :: 5 - Production/Stable
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
setup(
name = 'robotframework-ncclient2',
version = VERSION,
description = 'Fork of robotframework-ncclient with proper documentation, asynchronous operation support, and more',
long_description = DESCRIPTION,
author = 'Scott Carrion',
author_email = '[email protected]',
url = 'https://github.com/scott-carrion/robotframework-ncclient2',
license = 'Public Domain',
keywords = 'robotframework test automation NETCONF client',
platforms = 'any',
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
packages = ['NcclientLibrary'],
package_data = {'NcclientLibrary': ['tests/*.robot']},
install_requires=[
'robotframework',
'ncclient'
],
)