-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
66 lines (62 loc) · 2.05 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""Setup package installs Prodigy QA Package dependencies and plugins."""
from setuptools import setup, find_packages # noqa
from os import path
this_directory = path.abspath(path.dirname(__file__))
long_description = None
try:
with open(path.join(this_directory, 'README.md'), 'rb') as f:
long_description = f.read().decode('utf-8')
except IOError:
long_description = 'Unified Automation Testing Framework'
setup(
name='prodigyqa',
version='1.2.2',
description='Test Automation Framework',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://pyqa.github.io/prodigyqa/',
platforms=["Windows", "Linux", "Unix", "Mac OS-X"],
author='Revant',
author_email='[email protected]',
maintainer='Revant',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Internet",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Testing :: Acceptance",
"Topic :: Utilities",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
install_requires=[
'pip',
'setuptools',
'selenium',
'nose',
'jsondiff',
'openpyxl',
'pytesseract',
'beautifulsoup4',
'opencv-python',
'flake8==3.7.9',
'pycodestyle<2.6.0,>=2.5.0',
'pandas==0.24.2',
'urllib3==1.25.7',
'requests>=2.21.0',
'ipdb==0.12.2',
'pytest>=4.0.2',
'pytest-html<2.1.0',
'xlrd>=0.9.0',
'scrapy',
'nltk',
'loguru',
],)
print("\n*** Prodigy QA Framework Installation Complete! ***\n")