-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
38 lines (35 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
from setuptools import find_packages, setup
setup(
name='robotframework-historic',
version="0.2.9",
description='Custom report to display robotframework historical execution records',
long_description='Robotframework Historic is custom report to display historical execution records using MySQL + Flask',
classifiers=[
'Framework :: Robot Framework',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
keywords='robotframework historical execution report',
author='Shiva Prasad Adirala',
author_email='[email protected]',
url='https://github.com/adiralashiva8/robotframework-historic',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'robotframework',
'config',
'flask',
'flask-mysqldb'
],
entry_points={
'console_scripts': [
'rfhistoric=robotframework_historic.app:main',
'rfhistoricparser=robotframework_historic.parserargs:main',
'rfhistoricreparser=robotframework_historic.reparserargs:main',
'rfhistoricsetup=robotframework_historic.setupargs:main',
'rfhistoricupdate=robotframework_historic.updateargs:main',
]
},
)