-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (37 loc) · 1020 Bytes
/
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
[tool.poetry]
name = "factory"
version = "1.0.0"
description = "A fun game with robots… from the future!"
authors = ["Louise <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
PySide6 = "^6.2.3"
SQLAlchemy = {extras = ["mypy"], version = "^1.4.32"}
Faker = "^13.3.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.1"
pre-commit = "^2.17.0"
black = "^22.1.0"
pytest-cov = "^3.0.0"
pytest-qt = "^4.0.2"
flake8 = "^4.0.1"
freezegun = "^1.2.1"
pytest-mock = "^3.7.0"
[tool.poetry.scripts]
factory = "factory.main:main"
[tool.isort]
profile = "black"
[tool.mypy]
plugins = "sqlalchemy.ext.mypy.plugin"
strict = true
[[tool.mypy.overrides]]
module = "pytestqt.*"
ignore_missing_imports = true
[tool.pytest.ini_options]
markers = [
"init_controller_with: requires the test controller be initialized with some objects",
"init_robot_with: start the robot controller with an action"
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"