-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 1.03 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
install_requires = [
"selenium==3.141.0",
"allure-pytest==2.8.6",
"webdriver-manager==2.3.0"
]
setuptools.setup(
name="selpy",
version="0.1.1",
author="Naresh Sekar",
author_email="nareshnavinash@gmail.com",
description="Package to hold driver and locator methods for selenium",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nareshnavinash/selpy",
packages=setuptools.find_packages(),
keywords = ['POM', 'Selenium_POM', 'Selenium_pytest_POM', 'Page_Object_Model'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
python_requires='>=3.6',
install_requires=install_requires
)