forked from DeckofAdventures/TheGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (46 loc) · 1.35 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "automation" # TODO: Rename package
authors = [{name = "Chris Broz", email = "[email protected]"}]
description = "ADD LATER"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["ADD", "LATER"]
license = {text = "CC BY-NC-SA 4.0"}
classifiers = ["Programming Language :: Python :: 3"]
version = "1.0.0a5"
dynamic = ["dependencies"]
[project.optional-dependencies]
pdf = ["pdf2image"]
[project.urls]
homepage = "https://deckofadventures.github.io/TheGame"
# documentation = "https://readthedocs.org"
[project.scripts]
yaml-to-other = "automation.templates.main:yaml_to_other"
[flake8]
max-line-length = 88
exclude = "notebooks"
[tool.black]
line-length = 88
target-version = ["py310"]
exclude = ".env"
[tool.isort]
line_length = 88
profile = "black"
[tool.setuptools]
py-modules = ["automation"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt", "requirements_docs.txt"]}
[tool.pytest.ini_options]
minversion = "6.2"
addopts = "--cov=automation --cov-report term-missing --my-verbose False"
testpaths = "tests"
[tool.coverage.run]
omit = [
"**/temp*py",
"**/main.py",
]
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/