-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (72 loc) · 1.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "beedle"
version = "0.0.1"
authors = [
{ name="Johnathan Schaff", email="[email protected]" },
]
description = "Map to Graph translation library"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"flake8>=4.0.1",
"loguru>=0.6.0",
"numpy>=1.22.1",
"pylint>=2.15.0",
"pytest>=6.2.5"
]
[project.urls]
"Homepage" = "https://github.com/ctrl-schaff/beedle"
"Bug Tracker" = "https://github.com/ctrl-schaff/beedle/issues"
# pytest configuration
[tool.pytest.ini_options]
minversion = "6.2.5"
# Options
addopts = [
"-rA",
"-vv",
"--doctest-modules",
"--setup-show",
"--capture=tee-sys",
"--tb=line",
"--durations=0",
"--showlocals",
"--strict-markers",
"--color=yes",
"--code-highlight=yes",
"--debug"
]
# Path
norecursedirs = [
".svn",
".git",
"_build",
"tmp*",
"lib",
"lib64",
"tools"
]
testpaths = [
"test"
]
# Environment
env = [
"ROM_PATH = config/zelda2.nes"
]
# Logging
log_cli = true
log_cli_level = "INFO"
log_cli_format = "%(asctime)s [%(levelname)] %(message)s"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
log_file = "logs/pytest.log"
log_file_level = "INFO"
log_file_format = "%(asctime)s [%(levelname)] %(message)s"
log_file_date_format = "%Y-%m-%d %H:%M:%S"