-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (39 loc) · 1.36 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
[build-system]
requires = ["setuptools>=61.2.0", "wheel", "setuptools_scm[toml]>=3.4.3", "kaitaiStructCompile[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "MFCTool"
authors = [{name = "KOLANICH"}]
description = "A library for accessing MifareClassicTool hex dumps"
readme = "README.md"
keywords = ["MFCtool", "Mifare Classic", "NXP"]
license = {text = "Unlicense"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
#"Intended Audience :: Researchers",
"License :: Public Domain",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = {Homepage = "https://codeberg.org/KFmts/MFCTool.py"}
dependencies = [
"kaitaistruct", # @ git+https://github.com/kaitai-io/kaitai_struct_python_runtime.git
]
dynamic = ["version"]
[tool.setuptools]
zip-safe = true
packages = ["MFCTool"]
[tool.setuptools_scm]
[tool.kaitai]
outputDir = "MFCTool"
[tool.kaitai.flags]
readStoresPos = true
[tool.kaitai.repos."https://github.com/kaitai-io/kaitai_struct_formats.git"."master"]
update = true
localPath = "kaitai_struct_formats"
[tool.kaitai.repos."https://github.com/kaitai-io/kaitai_struct_formats.git"."master".formats.mifare_classic]
path = "hardware/mifare/mifare_classic.ksy"