-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (53 loc) · 1.11 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
54
55
56
57
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "deep_audio_dataset"
version = "0.1"
authors = [
{ name="Patrick Donnelly", email="[email protected]" },
{ name="Doug Dennis", email="[email protected]" },
]
description = "Audio dataset management for deep learning."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/Soundbendor/Deep-Audio-Dataset"
"Bug Tracker" = "https://github.com/Soundbendor/Deep-Audio-Dataset/issues"
[tool.ruff]
select = [
'A',
'ANN',
'B',
'C4',
'E',
'D',
'F',
'N',
'PIE',
'PL',
'PLE',
'PLR',
'PLW',
'PYI',
'RET',
'RUF',
'S',
'SIM',
'W'
]
line-length = 120
ignore-init-module-imports = true
extend-ignore = [
'ANN101', # type annotation on self
'ANN401', # use typing.Any
'D203',
'D212',
'PLR0913', # function argument count restriction
]
[tool.ruff.pydocstyle]
convention = "google"