forked from ElSnoMan/pyleniumio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 966 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
from setuptools import setup, find_packages
setup(
name='pyleniumio',
version='1.9.5',
packages=find_packages(),
include_package_data=True,
url='https://github.com/ElSnoMan/pyleniumio',
license='MIT',
author='Carlos Kidman',
author_email='[email protected]',
description='The best of Selenium and Cypress in a single Python Package',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
install_requires=[
'selenium', 'pytest', 'pytest-xdist', 'pytest-parallel', 'pydantic', 'pytest-reportportal',
'faker', 'requests', 'webdriver-manager', 'click', 'pyfiglet'
],
data_files=[('', [
'pylenium/scripts/pylenium.json',
'pylenium/scripts/pytest.ini',
'pylenium/scripts/drag_and_drop.js',
'pylenium/scripts/load_jquery.js'
])],
entry_points='''
[console_scripts]
pylenium=pylenium.scripts.cli:cli
'''
)