-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
32 lines (30 loc) · 962 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
from setuptools import setup
with open("README.md", "r") as readme_file:
readme = readme_file.read()
setup(
name="uitestcore",
version="10.6.0",
description="Package providing common functionality for UI automation test packs",
long_description=readme,
long_description_content_type="text/markdown",
license="MIT",
homepage="https://github.com/nhsuk/ui-test-core/",
packages=["uitestcore", "uitestcore.utilities", "tests", "tests.utilities"],
install_requires=[
"certifi==2023.7.22",
"chardet==5.1.0",
"idna==3.4",
"pyhamcrest==2.0.4",
"python-dateutil==2.8.2",
"requests==2.31.0",
"selenium==4.11.2",
"six==1.16.0",
"urllib3==1.26.12",
"axe-selenium-python-nhsuk"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License"
]
)