forked from MarketSquare/robotframework-difflibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (33 loc) · 1.33 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
#!/usr/bin/env python
from distutils.core import setup
from os.path import abspath, dirname, join
version_file = join(dirname(abspath(__file__)), 'src', 'DiffLibrary', 'version.py')
with open(version_file) as filehandle:
code = compile(filehandle.read(), version_file, 'exec')
exec(code)
DESCRIPTION = """
Robot Framework keyword library that will provide keyword functionality to diff two fules together .
"""[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-difflibrary',
version = VERSION,
description = 'Robot Framework keyword library for textual diffing',
long_description = DESCRIPTION,
author = 'Bulkan Savun Evcimen',
author_email = '[email protected]',
url = 'http://github.com/bulkan/robotframework-difflibrary',
license = 'Public Domain',
keywords = 'robotframework testing test automation diff textual',
platforms = 'any',
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
packages = ['DiffLibrary'],
package_data = {'DiffLibrary': ['tests/*.txt',
'bin/diff/*.*']}
)