-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpyproject.toml
58 lines (47 loc) · 1.06 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "pdf417gen"
authors = [{ name="Ivan Habunek", email="ivan@habunek.com" }]
description = "PDF417 2D barcode generator for Python"
keywords=["pdf417", "2d", "barcode", "generator"]
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.8"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
]
dependencies = [
"Pillow>=3.3.0"
]
[tool.setuptools]
packages = [
"pdf417gen",
"pdf417gen.compaction"
]
[tool.setuptools_scm]
[project.optional-dependencies]
dev = [
"build",
"twine",
]
test = [
"mock",
"pytest",
"pytest-cov",
"vermin",
]
[project.urls]
"Homepage" = "https://github.com/ihabunek/pdf417-py/"
[project.scripts]
pdf417gen = "pdf417gen.console:main"
[tool.pyright]
include = ["pdf417gen"]
typeCheckingMode = "strict"
[tool.ruff]
line-length = 100