-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (35 loc) · 913 Bytes
/
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
[build-system]
requires = [
"setuptools>=61.0",
]
build-backend = "setuptools.build_meta"
[project]
name = "denoisers"
version = "0.1.8"
authors = [
{ name="Will Rice", email="wrice20@gmail.com" },
]
description = "A package for training audio denoisers"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/will-rice/denoisers"
"Bug Tracker" = "https://github.com/will-rice/denoisers/issues"
[tool.isort]
known_first_party = ["denoisers"]
[tool.ruff]
ignore-init-module-imports = true
ignore = ["S101"]
[tool.ruff.lint]
select = ["C", "E", "F", "I", "W", "D", "N", "B"]
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
]