-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 1.13 KB
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
[build-system]
requires = ["setuptools>=61.2.0", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "kaitaiStructCompileBackendCLI"
authors = [{name = "KOLANICH"}]
description = "CLI backend for Kaitai Struct compiler"
keywords = ["KaitaiStruct", "compiler", "backend", "binary format", "setuptools", "automation"]
license = {text = "Unlicense"}
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: Public Domain",
"Operating System :: OS Independent",
]
requires-python = ">=3.4"
dependencies = ["setuptools"]
dynamic = ["version"]
[project.readme]
file = "ReadMe.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://github.com/kaitaiStructCompile/kaitaiStructCompileBackendCLI.git"
[project.entry-points.kaitai_struct_compile]
CLI = "kaitaiStructCompileBackendCLI:init"
[tool.setuptools]
zip-safe = true
include-package-data = true
py-modules = ["kaitaiStructCompileBackendCLI"]
license-files = ["UNLICENSE"]
[tool.setuptools_scm]