-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (63 loc) · 1.63 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
[tool.poetry]
authors = ["Chris Gregory <[email protected]>"]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description = "Langton's ant simulation."
keywords = ["langtons", "ant", "cellular", "automaton", "automata"]
license = "Apache Software License"
name = "langton"
readme = "README.md"
repository = "https://github.com/gregorybchris/langton"
version = "0.1.0"
[[tool.poetry.packages]]
include = "langton"
[tool.poetry.dependencies]
click = "^8.1.7"
python = ">=3.10"
numpy = "^1.26.3"
opencv-python = "^4.9.0.80"
tqdm = "^4.66.1"
[tool.poetry.group.dev.dependencies]
black = "^23.12.1"
mypy = "^1.8.0"
pylint = "^3.0.3"
pytest = "^7.4.3"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]
[tool.poetry.scripts]
langton = "langton.cli.cli:main"
[tool.black]
line-length = 120
[tool.isort]
line_length = 120
profile = "black"
src_paths = "*"
[tool.mypy]
disallow_incomplete_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.pylint.basic]
good-names = ["f", "i"]
notes = ["FIXME"]
[tool.pylint.format]
max-line-length = 120
[tool.pylint.master]
extension-pkg-allow-list = ["cv2"]
[tool.pylint.messages_control]
disable = [
"missing-function-docstring",
"missing-module-docstring",
"missing-class-docstring",
"logging-fstring-interpolation",
]
[tool.pylint.reports]
output-format = "colorized"
[tool.pylint.typecheck]
generated-members = ["cv2"]