forked from Dvd848/pytai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (35 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61.2.0", "wheel", "setuptools_scm[toml]>=3.4.3"]
build-backend = "setuptools.build_meta"
[project]
name = "pytai-hex"
readme = "README.md"
description = "Kaitai Struct: Visualizer and Hex Viewer GUI in Python"
authors = [{name = "Dvd848"}]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
]
keywords = ["pytai", "python", "kaitai", "gui"]
license = {text = "MIT"}
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"kaitaistruct >= 0.9"
]
[project.urls]
Homepage = "https://github.com/Dvd848/pytai"
[project.scripts] # todo: gui-scripts
pytai = "pytai.__main__:main"
[tool.setuptools]
zip-safe = true
packages = ["pytai", "pytai.kaitai", "pytai.kaitai.formats", "pytai.view", "pytai.view.assets", "pytai.tests"]
[tool.setuptools_scm]
# local_scheme = "no-local-version"