-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
28 lines (23 loc) · 752 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["dependencies"]
name = "QR-ScanGen"
authors = [{ name = "Emendir", email = "dev@emendir.tech" }]
version = "1.4.2"
license = "MIT-0 OR CC0-1.0"
description = "A simple cross-platform QR code scanner and generator"
[project.urls]
Homepage = "https://github.com/emendir/QR-ScanGen"
Repository = "https://github.com/emendir/QR-ScanGen"
Issues = "https://github.com/emendir/QR-ScanGen/issues"
Donate = "https://emendir.tech/Donate.html"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["src"]
include = ["qr_scangen"]
namespaces = false
[project.scripts]
qr-scangen = "qr_scangen:main"