-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (43 loc) · 908 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
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "chip8emulator"
version = "1.0.0"
authors = [{ name = "Manuel", email = "mmartinortiz@gmail.com" }]
description = "An emulator of CHIP-8"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"bitarray>=3.0.0",
"loguru>=0.7.2",
"pyside6>=6.8.1",
]
[dependency-groups]
dev = [
"ipython>=8.30.0",
"pre-commit>=4.0.1",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.8.1",
"tox>=4.23.2",
]
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["chip8emulator"]
[project.scripts]
chip8emulator = "chip8emulator.chip8emulator:main"
[tool.pytest.ini_options]
addopts = "--cov=chip8emulator --cov-report=term-missing"
testpaths = "tests"
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
select = [
"E4",
"E7",
"E9",
"F",
"I", # Isort
]
[tool.ruff.lint.isort]
combine-as-imports = true