forked from sisoe24/nukeserversocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (43 loc) · 1.24 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
43
44
45
46
47
48
49
50
51
52
53
[tool.poetry]
name = "nukeserversocket"
version = "1.1.0"
description = "A Nuke plugin that will allow code execution from the local network via TCP/WebSocket connections and more."
authors = ["virgilsisoe <[email protected]>"]
[tool.poetry.scripts]
nukeserversocket = "nukeserversocket.controllers.local_app:main"
build = "scripts.release_manager:main"
[tool.isort]
skip = ["__init__.py" , "version.py"]
length_sort = true
add_imports = "from __future__ import annotations"
[tool.autopep8]
max_line_length = 100
[tool.coverage.paths]
source = ["nukeserversocket"]
[tool.coverage.html]
directory = "coverage"
[tool.coverage.run]
omit = ["nukeserversocket/tests/*", "nukeserversocket/__init__.py"]
[tool.pytest.ini_options]
testpaths = "tests"
qt_api = "pyside2"
markers = ["quick: mark test"]
addopts = [
"--cov=nukeserversocket",
"--cov-report=html",
"--cov-report=xml",
"-W ignore::DeprecationWarning",
]
[tool.poetry.dependencies]
python = ">=3.7.7,<3.11"
pyside2 = "5.15.2.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
tox = "4.8.0"
pytest-qt = "^4.2.0"
pytest-cov = "^4.1.0"
pytest-repeat = "^0.9.3"
pytest-randomly = "3.12.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"