-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·40 lines (34 loc) · 1.35 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for DHCP Server Robotframework library"""
from __future__ import with_statement
from setuptools import setup
from os.path import abspath, dirname, join
from rfdhcpserverlib import __lib_version__
def read(fname):
"""read and return fname file content"""
curdir = dirname(abspath(__file__))
with open(join(curdir, fname)) as filename:
return filename.read()
CLASSIFIERS = """
Development Status :: 3 - Alpha
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
setup(
name='robotframework-dhcpserverlibrary',
version=__lib_version__,
description='This library allows RobotFramework to test DHCP clients, by communicating with a DHCP server installed on the test platform and to handle lease events using RobotFramework keywords',
long_description=read('README.md'),
author='Lionel Ains',
author_email='[email protected]',
url='https://github.com/Legrandgroup/robotframework-dhcpserverlibrary',
license='Apache License 2.0',
keywords='robotframework testing testautomation dhcp bootp server dnsmasq',
platforms='any',
classifiers=CLASSIFIERS.splitlines(),
packages=['rfdhcpserverlib'],
install_requires=['robotframework']
)