forked from florianfesti/boxes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
61 lines (53 loc) · 1.68 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
[build-system]
requires = ["setuptools >= 63.0"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["dependencies"]
name = 'boxes'
version = '1.2'
requires-python = '>=3.9'
description = 'Boxes generator for laser cutters'
maintainers = [ { name = 'Florian Festi', email='florian@festi.info' } ]
readme = "README.rst"
keywords = ["boxes", "box", "generator", "svg", "laser cutter"]
classifiers = [ # https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Manufacturing",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
dev = [
"lxml",
"mypy",
"pre-commit",
"pytest>=8.1.1",
"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