-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (58 loc) · 1.28 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
58
59
60
61
62
63
64
[project]
name = "torch-streamer"
version = "0.0.2"
description = "Streaming convolutions for PyTorch"
authors = [{ name = "Brent M. Spell", email = "brent@brentspell.com" }]
readme = "README.md"
license = { file = "LICENSE" }
urls.Homepage = "https://github.com/brentspell/torch-streamer"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
requires-python = ">=3.10"
dependencies = [
"torch",
"torchaudio",
]
optional-dependencies.dev = [
# development
"build",
"mypy",
"pre-commit",
"pytest-watch",
"ruff",
"setuptools",
"twine",
"wheel",
# testing
"coveralls",
"hypothesis",
"pytest",
"pytest-benchmark",
"pytest-cov",
]
optional-dependencies.docs = [
"mkdocs ~= 1.6",
"mkdocstrings[python] ~= 0.25",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
lint.extend-select = ["I"]
[tool.mypy]
check_untyped_defs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
ignore_missing_imports = true
no_implicit_optional = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
[tool.coverage.report]
exclude_lines = [
"@abstractmethod",
"@abc.abstractmethod"
]