-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
54 lines (45 loc) · 1.1 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
46
47
48
49
50
51
52
53
54
[project]
name = "board2pdf"
version = "1.7.3"
description='KiCAD Gerber PDF Generator'
authors = [{name = "Albin Dennevi"}]
license = {text = "GNU GPLv3"}
readme = "README.md"
requires-python = ">=3.6"
keywords = ["kicad", "pdf", "pcb", "electronics"]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pymupdf"
]
[project.urls]
repository='https://gitlab.com/dennevi/Board2Pdf'
url='https://gitlab.com/dennevi/Board2Pdf'
[project.scripts]
board2pdf= "board2pdf.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src", "src/board2pdf"]
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"
]
[tool.setuptools.package-data]
board2pdf= ["*.def", "*.ini"]
[tool.pylint]
max-line-length = 200
disable = [
"C0103", # (invalid-name)
"C0114", # (missing-module-docstring)
"C0115", # (missing-class-docstring)
"C0116", # (missing-function-docstring)
"R0903", # (too-few-public-methods)
"R0913", # (too-many-arguments)
"W0105", # (pointless-string-statement)
"C0301",
"W1203",
"C0209"
]