-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 775 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (28 loc) · 775 Bytes
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
[project]
name = "snx-simulator"
version = "0.2.4"
description = "sn/x architecture assembly code simulator"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.11"
dependencies = []
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://github.com/snowykr/snx-simulator"
Source = "https://github.com/snowykr/snx-simulator"
Documentation = "https://github.com/snowykr/snx-simulator#documentation"
[project.scripts]
snx = "snx.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=8.0",
]
[tool.hatch.build.targets.wheel]
packages = ["snx"]
[tool.pytest.ini_options]
testpaths = ["tests"]