-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (51 loc) · 1.33 KB
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
52
53
54
55
56
57
58
59
60
[project]
name = "another6502"
version = "0.1"
description = "Python-based behavioral emulator of the NMOS 6502 microprocessor."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Florian Ehmann" }]
keywords = ["emulator", "6502", "retro"]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
]
[project.urls]
Repository = "https://github.com/florianehmann/another6502"
Issues = "https://github.com/florianehmann/another6502/issues"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["ALL"]
ignore = [
"G004", # logging statement uses f-string
"TD002", # missing author in todo
"TD003", # missing issue link in todo
"D105", # missing docstring in magic methods
]
[tool.ruff.lint.per-file-ignores]
"tests/*.py" = [
"INP001", # implicit namespace
]
"tests/*test_*.py" = [
"ANN201", # missing return type annotation
"S101", # use of assert in tests
]
[tool.ruff.format]
quote-style = "double"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"pytest>=9.0.2",
"pytest-cov>=7.0.0",
"twine>=6.2.0",
]
[build-system]
requires = ["setuptools>=77.0.0"]
build-backend = "setuptools.build_meta"