-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (41 loc) · 1.04 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0", "setuptools-scm"]
[project]
dependencies = [
"boto3==1.24.*",
"python-vlc==3.*",
"pyqt5==5.15.*",
"pynput==1.7.*",
"pyttsx3==2.90.*",
"google-cloud-texttospeech==2.5.*",
"darkdetect==0.8.*",
"pyyaml",
]
name = "cracker"
readme = "README.md"
dynamic = ["version"]
[project.gui-scripts]
cracker = "cracker.main:main"
[project.optional-dependencies]
dev = ["black==23.1.*", "isort==5.12.*", "pycodestyle"]
build = ["setuptools>=61", "build", "twine"]
test = ["pytest"]
[tool.setuptools.dynamic]
version = {attr = "cracker.__version__"}
[tool.setuptools.packages.find]
include = ["cracker*"]
[tool.isort]
line_length = 120
profile = "black"
[tool.black]
line-length = 120
[tool.pytest.ini_options]
addopts = "-p no:warnings"
filterwarnings = [
#"error",
#"ignore::UserWarning",
# note the use of single quote below to denote "raw" strings in TOML
#'ignore:function ham\(\) is deprecated:DeprecationWarning',
'ignore:DeprecationWarning',
]