-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.22 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.22 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
[project]
name = "selenium-datatable"
description = "A small library for simplifying a table object in selenium"
readme = "README.md"
requires-python = ">=3.8"
# license = "Apache-2.0"
authors = [{ name = "Lukasz Fundakowski", email = "fundakol@yahoo.com" }]
keywords = ["selenium table data-table testing"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"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",
]
dependencies = ["selenium>=3.141.0"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/fundakol/selenium_datatable"
[project.optional-dependencies]
dev = [
"Flask>=2.0.3",
"pytest>=7.0.1",
"pytest-cov>=3.0.0",
"Werkzeug>=2.0.2",
]
[dependency-groups]
dev = [
"Flask>=2.0.3",
"Werkzeug>=2.0.2",
"pytest>=7.0.1",
"pytest-cov>=3.0.0",
]
[build-system]
requires = ["setuptools", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 120
[tool.setuptools_scm]