-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
49 lines (40 loc) · 1.83 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
[build-system]
requires = [ "setuptools>=41.0.1",]
build-backend = "setuptools.build_meta"
[tool.mypy]
ignore_missing_imports = true
[tool.xcookie]
tags = [ "github", "erotemic", "purepy", "cv2"]
mod_name = "sm64_random_assets"
repo_name = "sm64-random-assets"
rel_mod_parent_dpath = "."
os = [ "linux", "osx", "win",]
min_python = '3.9'
version = "{mod_dpath}/__init__.py::__version__"
author = "Jon Crall"
ci_cpython_versions = ['3.9', '3.10', '3.11', '3.12']
author_email = "[email protected]"
description = "The sm64-random-assets module"
license = "Apache 2"
dev_status = "planning"
remote_host = "https://github.com"
remote_group = "Erotemic"
url = "https://github.com/Erotemic/sm64-random-assets"
ci_pypy_versions = []
# Skip top level files for now
skip_autogen = ['publish.sh', 'run_linter.sh', 'MANIFEST.in', 'run_tests.py', 'run_doctests.sh']
[tool.xcookie.package_data]
sm64_random_assets.rc = ["asset_metadata.json"]
[tool.xcookie.entry_points]
console_scripts = [
"sm64_random_assets=sm64_random_assets.__main__:main",
]
[tool.pytest.ini_options]
addopts = "-p no:doctest --xdoctest --xdoctest-style=google --ignore-glob=setup.py --ignore-glob=dev --ignore-glob=docs"
norecursedirs = ".git ignore build __pycache__ dev _skbuild docs"
filterwarnings = [ "default", "ignore:.*No cfgstr given in Cacher constructor or call.*:Warning", "ignore:.*Define the __nice__ method for.*:Warning", "ignore:.*private pytest class or function.*:Warning",]
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_lines = [ "pragma: no cover", ".* # pragma: no cover", ".* # nocover", "def __repr__", "raise AssertionError", "raise NotImplementedError", "if 0:", "if trace is not None", "verbose = .*", "^ *raise", "^ *pass *$", "if _debug:", "if __name__ == .__main__.:", ".*if six.PY2:",]
omit = [ "sm64-random-assets/__main__.py", "*/setup.py",]