-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.23 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "scanline-python-wrapper"
version = "1.0.1"
authors = [
{name = "Wanadev", email = "contact@wanadev.fr"},
]
description = "Python wrapper for the scanline CLI scanner tool for macOS"
readme = "README.rst"
keywords = ["scan", "scanline", "macos", "icc"]
license = "bsd-3-clause"
license-files = ["LICENSE"]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"nox",
"flit",
"black",
"flake8",
"flake8-pyproject",
"validate-pyproject",
"pytest",
"sphinx",
"sphinx-rtd-theme",
]
[project.urls]
source = "https://github.com/wanadev/scanline-python-wrapper"
documentation = "https://wanadev.github.io/scanline-python-wrapper/"
changelog = "https://github.com/wanadev/scanline-python-wrapper?tab=readme-ov-file#changelog"
issues = "https://github.com/wanadev/scanline-python-wrapper/issues"
chat = "https://discord.gg/BmUkEdMuFp"
[tool.setuptools]
py-modules = ["scanline_wrapper"]
[tool.black]
target-version = ["py310"]
[tool.flake8]
ignore = [
# ↓↓ Black handles that its way... :)
"W503", # line break before binary operator
"E501", # line too long (> 79 characters)
]