-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (25 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
31 lines (25 loc) · 844 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scanner-cli"
version = "1.0.5"
description = "CLI tool to read barcodes via stdin and route them to REST endpoints based on configurable modes."
readme = "README.md"
authors = [{ name = "Passlick Development", email = "hello@passlickdev.com" }]
license = "AGPL-3.0-only"
requires-python = ">=3.10"
dependencies = ["pyyaml>=6.0", "httpx>=0.27.0", "rich>=13.7.0"]
[project.urls]
Homepage = "https://passlickdev.com"
Repository = "https://github.com/passlickdev/scanner-cli"
Issues = "https://github.com/passlickdev/scanner-cli/issues"
[project.scripts]
scanner-cli = "scanner_cli.main:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["scanner_cli*"]
[tool.black]
line-length = 100
[tool.isort]
profile = "black"