-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·29 lines (27 loc) · 1009 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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Testing",
],
name="django-selenium-clean",
version="0.0.1.dev0",
license="BSD 3-Clause License",
description="Write clean Selenium tests in Django",
author="Antonis Christofides",
author_email="[email protected]",
url="https://github.com/aptiko/django-selenium-clean",
packages=find_packages(),
install_requires=["django>=2.2,<6", "selenium>=3,<5"],
test_suite="tests.tests",
)