-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpyproject.toml
50 lines (43 loc) · 1.15 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
[tool.poetry]
package-mode = false
name = "universal-controller-script"
version = "1.2.1"
description = "A free and open source program that integrates with FL Studio to provide deep integration between hardware controllers and software."
authors = ["Maddy Guthridge <[email protected]>"]
license = "GPL v3"
readme = "README.md"
[tool.mypy]
files = ["src", "tests"]
check_untyped_defs = true
warn_return_any = true
show_column_numbers = true
[tool.coverage.run]
branch = true
omit = ["src/fl_typing"]
[tool.coverage.report]
exclude_also = [
'if TYPE_CHECKING:',
'return NotImplemented',
'@overload',
'raise AssertionError',
'raise NotImplementedError',
]
[tool.flake8]
exclude = ['.git', '__pycache__', 'dist', 'site']
[tool.poetry.dependencies]
python = "^3.9.1"
fl-studio-api-stubs = "^33.2.0"
typing-extensions = "^4.12.2"
jestspectation = "^1.4.3"
[tool.poetry.group.dev.dependencies]
coverage = "^7.6.10"
flake8 = "^7.1.1"
isort = "^5.13.2"
mypy = "^1.14.1"
pytest = "^8.3.4"
autopep8 = "^2.3.1"
jestspectation = "^1.4.3"
flake8-pyproject = "^1.2.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"