forked from jg8481/robotframework-metrics-custom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.09 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
from setuptools import setup, find_packages
filename = 'robotframework_metrics_custom/version.py'
exec(compile(open(filename, 'rb').read(), filename, 'exec'))
setup(name='robotframework-metrics-custom',
version=__version__,
description='Custom metrics based report for robot framework',
long_description='Custom metrics based report for robot framework',
classifiers=[
'Framework :: Robot Framework',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
keywords='robotframework report',
author='Shiva Prasad Adirala',
author_email='[email protected]',
url='https://github.com/adiralashiva8/robotframework-metrics-custom',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=[
'robotframework',
'beautifulsoup4',
'gevent'
],
entry_points={
'console_scripts': [
'robotcmetrics=robotframework_metrics_custom.runner:main',
]
},
)