-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (32 loc) · 1.08 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
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
line_length = 120
[tool.poetry]
name = "gameoflife-ndimage"
version = "0.1.3"
description = "Quick simulation of arbitrary rulesets for nearest-neighbour cellular automata. Uses scipy.ndimage.correlate, and can export videos via ffmpeg-python."
authors = ["RundownRhino <52856631+RundownRhino@users.noreply.github.com>"]
license = "MIT"
readme = "README.md"
packages = [{ include = "gameoflife_ndimage" }]
keywords = ["gameoflife", "cellular", "automata", "scipy"]
repository = "https://github.com/RundownRhino/Cellular-Automata-Simulator"
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.23.5"
scipy = "^1.9.3"
ffmpeg-python = "^0.2.0"
pillow = "^9.3.0"
[tool.poetry.group.dev.dependencies]
black = "^22.10.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
filterwarnings = [
# seems to be something pytest-internal - I don't get it when calling the same test function manually
'ignore:the imp module is deprecated:DeprecationWarning',
]