-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (35 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
41 lines (35 loc) · 970 Bytes
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
[tool.coverage.run]
branch = true
source = [ "packages/python_app" ]
[tool.coverage.report]
exclude_lines = ['if TYPE_CHECKING:']
show_missing = true
[tool.pytest.ini_options]
addopts = "--cov --cov-report html:'./coverage/./html' --cov-report xml:'./coverage/./coverage.xml' --html='./reports/./unittests/html/index.html' --junitxml='./reports/./unittests/junit.xml'"
[tool.poetry]
name = "astro-python"
version = "1.0.0"
description = "Astro Python"
authors = [ ]
license = 'Proprietary'
readme = 'README.md'
packages = [
{ include = "python_app", from = "packages" }
]
[tool.poetry.dependencies]
python = ">=3.10.0,<3.13"
webui2 = "^2.5.6"
click = "^8.1.7"
asyncio = "^3.4.3"
tinydb = "^4.8.0"
[tool.poetry.group.dev.dependencies]
pyinstaller = "^6.5.0"
autopep8 = "2.0.2"
flake8 = "6.0.0"
pytest = "7.3.1"
pytest-sugar = "0.9.7"
pytest-cov = "4.1.0"
pytest-html = "3.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"