-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.25 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (46 loc) · 1.25 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
#This file is used to package the InvenTreeDymo plugin.
#
#- It was generated by the InvenTree Plugin Creator tool - version 1.13.0
#- Ref: https://github.com/inventree/plugin_creator
[build-system]
requires = ["setuptools", "twine", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "inventree-dymo-plugin"
description = "Dymo Label printer driver plugin for InvenTree."
dynamic = ["version"]
authors = [
{ name = "wolflu05",email = "76838159+wolflu05@users.noreply.github.com" },
]
readme = "README.md"
license = "GPL-3.0+"
keywords = ["inventree", "plugin"]
requires-python = ">=3.9"
dependencies = [
# Enter your plugin library dependencies here
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Framework :: InvenTree",
]
[project.urls]
Homepage = "https://github.com/wolflu05/inventree-dymo-plugin"
[project.entry-points."inventree_plugins"]
InvenTreeDymoPlugin = "inventree_dymo.core:InvenTreeDymoPlugin"
[tool.setuptools.packages.find]
where = [""]
[tool.setuptools.dynamic]
version = {attr = "inventree_dymo.PLUGIN_VERSION"}
[tool.ruff]
exclude = [
".git",
"__pycache__",
"test.py",
"tests",
"venv",
"env",
".venv",
".env",
]
src=["inventree_dymo"]