-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 1.13 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
[build-system]
requires = [
"setuptools",
]
build-backend = "setuptools.build_meta"
[project]
authors = [
{name = "Rocky Bernstein", email = "[email protected]"},
]
name = "trepan3k_mathics3"
description = "trepan3k plugin to support Mathics3 debugging"
dependencies = ["Mathics3"]
readme = "README.rst"
license = {text = "GPL"}
keywords = ["debugger"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/Mathics3/trepan3k-mathics3-plugin"
Downloads = "https://github.com/Mathics3/trepan3k-mathics3-plugin/releases"
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest",
]
# [project.scripts]
# pydisasm = "xdis.bin.pydisasm:main"
[tool.setuptools.dynamic]
version = {attr = "trepan3k_mathics3.version.__version__"}