-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
45 lines (37 loc) · 1.23 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8.0.0"]
build-backend="setuptools.build_meta"
[project]
name = "navmazing"
description = "A simple navigation framework"
authors = [{name="Peter Savage",email="psavage@redhat.com"}]
maintainers = [{name="Ronny Pfannschmidt", email="rpfannsc@redhat.com"}]
readme = {file="README.rst", content-type="text/x-rst"}
urls.Project = "https://github.com/RedhatQE/navmazing/"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"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",
"Topic :: Utilities",
]
keywords = ["selenium", "navigation"]
requires-python = ">= 3.8"
dynamic = ["version"]
[tool.setuptools]
packages = ["navmazing"]
package-dir = {""="src"}
package-data = {navmazing= ["py.typed"]}
[tool.setuptools_scm]
[tool.mypy]
strict=true
python_version = "3.8"
[tool.ruff]
extend-select = ["UP","F","E","W","ANN", "FA"]
ignore = ["ANN101", "ANN102"]