-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
55 lines (48 loc) · 1.5 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
[tool.poetry]
name = "boltlib"
version = "0.2.0"
description = "Bitcoin Lightning BoltCard (NTAG 424 DNA) Read/Write library"
authors = ["Titusz <tp@py7.de>"]
license = "LGPL-2.1-only"
readme = "README.md"
repository = "https://github.com/titusz/boltlib"
keywords=["bitcoin", "lightning", "boltcard", "nfc", "contactless"]
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: System :: Hardware :: Universal Serial Bus (USB) :: Smart Card",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/titusz/boltlib/issues"
[tool.poetry.scripts]
boltcard = 'boltlib.cli:cli'
[tool.poetry.dependencies]
python = "^3.8"
loguru = "^0.6"
pyscard = "^2.0"
ndeflib = "^0.3"
click = "^8.1"
construct = "^2.10.68"
construct-typing = "^0.5.4"
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
black = "*"
poethepoet = "*"
pyinstaller = "*"
setuptools = "*"
wheel = "*"
[tool.poe.tasks]
format = { cmd = "poetry run black .", help = "Format code with black" }
test = { cmd = "poetry run pytest", help = "Run tests" }
all = ["format", "test"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"