-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
39 lines (34 loc) · 950 Bytes
/
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
[tool.poetry]
name = "riscemu"
version = "2.2.7"
description = "A basic RISC-V emulator"
authors = ["Anton Lydike <me@antonlydike.de>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/antonlydike/riscemu"
repository = "https://github.com/antonlydike/riscemu"
keywords = ["RISC-V"]
# classifiers
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
riscemu = "riscemu.__main__:main"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/antonlydike/riscemu/issues"
[tool.poetry.dependencies]
python = "^3.8"
pyelftools = "^0.30"
importlib-resources = "^6.1.0"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
pytest = "^7.4.0"
filecheck = "^0.0.23"
lit = "^16.0.6"
pre-commit = "^3.3.3"
psutil = "^5.9.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"