blob: f6ab33113c42bde3115816c9342ce6b994f56690 (
plain)
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
|
[tool.poetry]
name = "sliceitoff"
version = "0.0-alpha"
description = ""
authors = ["Viljami Ilola <+@hix.fi>"]
readme = "README.md"
packages = [{include = "sliceitoff", from = "src"}]
[tool.poetry.dependencies]
python = "^3.11"
pygame = "^2.5.2"
[tool.poetry.group.dev.dependencies]
pylint = "^3.1.0"
pytest = "^8.1.1"
coverage = "^7.4.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
miinaharava = 'sliceitoff.main:main'
[tool.pytest.ini_options]
pythonpath = [ "src/sliceitoff" ]
[tool.pylint.main]
recursive = true
source-roots = ["src/sliceitoff"]
|