forked from unibo-fc-isi-ds/lab-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (36 loc) · 1.02 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
[tool.poetry]
name = "lab-snippets"
packages = [
{ include = "snippets" },
]
version = "2.1.8"
description = "Code snippets for the course 'Distributed Systems -- Module 2' at the University of Bologna"
authors = ["Giovanni Ciatto <giovanni.ciatto@unibo.it>"]
license = "Apache 2.0"
readme = "README.md"
[tool.poetry.dependencies]
python = ">= 3.9.0 < 4.0.0"
pygame = "^2.6.0"
psutil = "^6.0.0"
[tool.poetry.group.dev.dependencies]
coverage = "^7.4.0"
mypy = "^1.10.1"
poethepoet = "^0.30.0"
poetry = "^1.8.3"
pytest = "^8.2.2"
[tool.poe.tasks]
# test = "python -m unittest discover -v -s tests -p '*.py'"
# coverage = "coverage run -m unittest discover -v -s tests -p '*.py'"
# coverage-report = "coverage report -m"
# coverage-html = "coverage html"
mypy = "mypy snippets"
compile = "python -m compileall snippets"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "PyPI"
priority = "primary"
[tool.mypy]
ignore_missing_imports = true
no_implicit_optional = false