mirror of
https://github.com/LIV2/amitools.git
synced 2025-12-06 06:32:47 +00:00
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm", "cython >= 3.0.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "amitools"
|
|
authors = [
|
|
{name = "Christian Vogelgsang", email = "chris@vogelgsang.org"},
|
|
]
|
|
description = "A package to support development with classic Amiga m68k systems"
|
|
requires-python = ">=3.7"
|
|
keywords = ["AmigaOS", "vamos"]
|
|
license = {text = "GPL-v2"}
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python",
|
|
"Topic :: System :: Emulators",
|
|
]
|
|
dynamic = ["version", "readme"]
|
|
|
|
[project.optional-dependencies]
|
|
vamos = ["machine68k"]
|
|
|
|
[tool.setuptools]
|
|
zip-safe = false
|
|
include-package-data = true
|
|
packages = ["amitools"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
readme = { file="README.md", content-type="text/markdown" }
|
|
|
|
[tool.setuptools_scm]
|
|
|
|
[project.scripts]
|
|
fdtool = "amitools.tools.fdtool:main"
|
|
geotool = "amitools.tools.geotool:main"
|
|
hunktool = "amitools.tools.hunktool:main"
|
|
rdbtool = "amitools.tools.rdbtool:main"
|
|
romtool = "amitools.tools.romtool:main"
|
|
typetool = "amitools.tools.typetool:main"
|
|
vamos = "amitools.tools.vamos:main"
|
|
vamospath = "amitools.tools.vamospath:main"
|
|
vamostool = "amitools.tools.vamostool:main"
|
|
xdfscan = "amitools.tools.xdfscan:main"
|
|
xdftool = "amitools.tools.xdftool:main"
|