forked from pklaus/brother_ql_web
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
90 lines (82 loc) · 2.03 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "brother-ql-web"
description = "Simple label designer API and web API for Brother QL label printers"
version = "0.4.0"
license = {text = "GPL-3.0-only"}
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Philipp Klaus (initial)"},
{name = "FriedrichFröbel"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Bottle",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Multimedia :: Graphics",
]
keywords = [
"brother",
"brother_ql",
"label",
"printer",
]
requires-python = ">=3.9, <4"
dependencies = [
"brother_ql",
"bottle",
"jinja2",
"Pillow>=8",
]
[project.scripts]
brother_ql_web = "brother_ql_web.__main__:main"
[project.urls]
Homepage = "https://github.com/FriedrichFroebel/brother_ql_web/"
Repository = "https://github.com/FriedrichFroebel/brother_ql_web/"
Issues = "https://github.com/FriedrichFroebel/brother_ql_web//issues"
Changelog = "https://github.com/FriedrichFroebel/brother_ql_web/blob/master/CHANGELOG.md"
[project.optional-dependencies]
fontra = [
"fontra>=0.5.2",
]
dev = [
"black",
"codespell",
"flake8",
"pep8-naming",
"flake8-bugbear",
"requests",
]
mypy = [
"mypy",
"types-Pillow",
"types-requests",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = [
"brother_ql_web",
"brother_ql_web.*",
]
namespaces = false
[tool.mypy]
mypy_path = '$MYPY_CONFIG_FILE_DIR/stubs'
strict = true
files = "brother_ql_web,tests"
[tool.codespell]
skip = "*.min.js*,*.min.css*,venv*,cgi.py"
ignore-words-list = "assertIn"