-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.py
33 lines (30 loc) · 977 Bytes
/
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
setup(
name='robotframework-metrics',
version="3.6.0",
description='Custom report for robot framework',
long_description='Custom html report generator using robot.result api',
classifiers=[
'Framework :: Robot Framework',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
keywords='robotframework report',
author='Shiva Prasad Adirala',
author_email='adiralashiva8@gmail.com',
url='https://github.com/adiralashiva8/robotframework-metrics',
license='MIT',
packages=find_packages(),
include_package_data= True,
zip_safe=False,
install_requires=[
'robotframework',
'jinja2',
'pandas',
],
entry_points={
'console_scripts': [
'robotmetrics=robotframework_metrics.runner:main',
]
},
)