-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 2.77 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (73 loc) · 2.77 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Rename to build stable version
# This is stable version
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "je_web_runner"
version = "0.0.87"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
description = "WEB Automation Framework"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
keywords = [
"selenium", "automation", "testing", "web-automation",
"webdriver", "browser", "e2e", "qa",
]
# Every runtime dependency carries a lower bound so an installer cannot
# silently resolve a version predating a known advisory or an API this
# package relies on. Floors are minimums, not pins — upper bounds are left
# open so the package stays co-installable.
dependencies = [
"selenium>=4.0.0",
# 2.33.0 is the first release carrying the extract_zipped_paths fix
# (GHSA-gc5v-m9x4-r6x2).
"requests>=2.33.0",
"python-dotenv>=1.0.0",
# 4.x is the line this package is developed and tested against.
"webdriver-manager>=4.0.0",
"defusedxml>=0.7.1",
# Floor set to the first release without the known Pillow advisories;
# wheels cover cp310-cp315, so it excludes no supported interpreter.
"Pillow>=12.3.0",
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3 :: Only",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
[project.urls]
Homepage = "https://github.com/Intergration-Automation-Testing/WebRunner"
Documentation = "https://webrunner.readthedocs.io/en/latest/"
Code = "https://github.com/Intergration-Automation-Testing/WebRunner"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.packages]
find = { namespaces = false }
[tool.setuptools.package-data]
# Ship the PEP 561 marker so downstream type checkers honour the inline
# type hints exported by je_web_runner.
je_web_runner = ["py.typed"]
[tool.pytest.ini_options]
# Real test modules are named test_*.py across unit/integration/e2e. The
# legacy *_test.py scripts under test/unit_test/*/ are standalone browser
# programs that call sys.exit() at import time, so restricting collection to
# the test_*.py pattern keeps `python -m pytest test/` from crashing on them.
testpaths = ["test"]
python_files = ["test_*.py"]