-
Notifications
You must be signed in to change notification settings - Fork 474
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.76 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["dependencies"]
name = "boxes"
version = "1.2"
requires-python = ">=3.10"
description = "Boxes generator for laser cutters"
maintainers = [ { name = "Florian Festi", email="florian@festi.info" } ]
readme = "README.rst"
keywords = ["boxes", "box", "generator", "svg", "laser cutter"]
license = "GPL-3.0-or-later"
classifiers = [ # https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Manufacturing",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
dev = [
"lxml>=6.0.2",
"mypy>=1.20.0",
"pre-commit>=4.5.1",
"pytest>=9.0.3",
"types-Markdown"
]
doc = ["sphinx>=8.0.2"]
[tool.setuptools.dynamic]
dependencies = {file=["requirements.txt"]}
[project.scripts]
boxes = "boxes.scripts.boxes_main:main"
boxesserver = "boxes.scripts.boxesserver:main"
boxes_proxy = "boxes.scripts.boxes_proxy:main"
[project.urls]
Homepage = "https://hackaday.io/project/10649-boxespy"
Repository = "https://github.com/florianfesti/boxes"
Documentation = "https://florianfesti.github.io/boxes/html/index.html"
[tool.codespell]
ignore-words-list = "ded,te,pathes,reencode,ontop,alledges"
[tool.mypy]
extra_checks = true
ignore_missing_imports = true
strict_bytes = true
strict_equality = true
warn_redundant_casts = true
#warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.rstcheck]
report_level = "ERROR"
ignore_directives = [
"autoclass",
"automethod",
"automodule",
]