-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpyproject.toml
55 lines (46 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
[project]
name = "cache-simulator"
version = "2.0.1"
description = "A processor cache simulator for the MIPS ISA"
readme = "README.md"
requires-python = ">=3.4"
authors = [
{name = "Caleb Evans", email = "[email protected]"}
]
maintainers = [
{name = 'Caleb Evans', email = '[email protected]'}
]
license = {file = 'LICENSE.txt'}
keywords = ["mips", "processor", "cache", "simulator", "architecture"]
[project.urls]
homepage = "https://github.com/caleb531/cache-simulator"
documentation = "https://github.com/caleb531/cache-simulator#readme"
repository = "https://github.com/caleb531/cache-simulator"
changelog = "https://github.com/caleb531/cache-simulator/releases"
[project.scripts]
cache-simulator = "cachesimulator.__main__:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.flake8]
# Black compatibility
max-line-length = 88
extend-ignore = ["E203", "W503"]
exclude = [".git", "build", "__pycache__", "*.egg-info", ".virtualenv"]
# Per <https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#profile>
[tool.isort]
profile = "black"
# Configuration for coverage.py (https://pypi.python.org/pypi/coverage)
[tool.coverage.run]
# Enable branch coverage
branch = true
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_lines = [
"pragma: no cover",
# Ignore non-runnable code
"if __name__ == .__main__.:",
"pass",
]
# Only check coverage for source files
include = ["cachesimulator/*.py"]