-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.54 KB
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
46
47
48
49
50
51
52
53
54
55
56
[tool.poetry]
name = "ftrack-integrations-monorepo"
version = "0.0.0"
description='ftrack Integrations Monorepo'
authors = ["ftrack Integrations Team <integrations@backlight.co>"]
readme = "README.md"
license = "Apache-2.0"
homepage = "https://ftrack.com"
repository = "https://github.com/ftrackhq/integrations/"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = ">= 3.7, < 3.12"
[tool.poetry.group.test.dependencies]
black = [
{ version = "23.1.0", python = "<3.8"},
{ version = "^23.12.0", python = ">=3.8"}
]
pytest = "^6.0.0"
pytest-mock = "*"
coverage = { version = "^7.3.2", python = ">=3.8", extras = ["toml"] }
ftrack-constants = { path = "libs/constants", develop = true }
ftrack-utils = { path = "libs/utils", develop = true }
ftrack-framework-core = { path = "libs/framework-core", develop = true }
ftrack-framework-qt = { path = "libs/framework-qt", develop = true }
ftrack-qt = { path = "libs/qt", develop = true }
ftrack-qt-style = { path = "libs/qt-style", develop = true }
[tool.black]
line-length = 79
skip-string-normalization = true
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--ignore=tests/framework/manual"
pythonpath = [
'libs/constants/source',
'libs/utils/source',
'libs/framework-core/source',
# QT
'libs/framework-qt/source',
'libs/qt/source',
'libs/qt-style/source'
]
[tool.coverage.run]
command_line = "-m pytest --disable-pytest-warnings"
relative_files = true
[tool.coverage.report]
show_missing = true