-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·34 lines (28 loc) · 1.08 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
#!/usr/bin/env python
from distutils.core import setup
VERSION = '0.1'
DESCRIPTION = """
ImageComparisonLibrary is a CSS testing library for Robot Framework.
"""[1:-1]
CLASSIFIERS = """
Development Status :: 4 - Beta
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
setup(name = 'robotframework-imagecomparison',
version = VERSION,
description = 'CSS testing library for Robot Framework',
long_description = DESCRIPTION,
author = 'Jason Filipe',
author_email = '[email protected]',
url = 'https://github.com/jfilipe/robotframework-imagecomparison',
license = 'Public Domain',
keywords = 'robotframework testing css styles styling frontend automation',
platforms = 'any',
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'': 'src'},
packages = ['ImageComparisonLibrary'],
package_data = {'ImageComparisonLibrary': ['tests/*.txt']}
)