-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 965 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 965 Bytes
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "niobium"
authors = [
{name = "cle-b", email = "cle@tictac.pm"},
]
description="Niobium extends the Python Selenium client with nice features"
readme="README.md"
requires-python = ">=3.8"
dependencies = [
"selenium>=4",
"opencv-python",
"pillow"
]
license = {text = "Apache-2.0"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: User Interfaces",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "niobium.__version__"}
[project.urls]
Repository = "https://github.com/cle-b/niobium/"
Documentation = "https://niobium.readthedocs.io/"
[tool.mypy]
no_implicit_optional = false
disable_error_code= ["method-assign",]
files = ["niobium"]