-
Notifications
You must be signed in to change notification settings - Fork 71
/
pyproject.toml
46 lines (40 loc) · 1.29 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", "setuptools-scm", "cython >= 3.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "amitools"
authors = [
{name = "Christian Vogelgsang", email = "[email protected]"},
]
description = "A package to support development with classic Amiga m68k systems"
requires-python = ">=3.8"
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"