-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.1 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (40 loc) · 1.1 KB
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
[project]
name = "adafilt"
version = "0.1.0"
description = "Adaptive filters for 🐍"
readme = "README.md"
requires-python =">=3.8"
license = {file = "LICENSE"}
authors = [
{name = "Franz M. Heuchel", email = "franz.heuchel@gmail.com"},
]
keywords = ["signal-processing", "adaptive-filters", "dsp"]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Multimedia :: Sound/Audio",
]
urls = {repository = "https://github.com/fhchl/adafilt" }
dependencies = ["numpy>=1"]
[project.optional-dependencies]
dev = ["pytest", "ruff", "scipy"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build]
include = ["adafilt/*"]
[tool.ruff]
extend-include = ["*.ipynb"]
src = []
[tool.ruff.lint]
fixable = ["I001", "F401"]
ignore = ["E402", "E721", "E731", "E741", "F722"]
select = ["E", "F", "I001"]
[tool.ruff.lint.isort]
combine-as-imports = true
lines-after-imports = 2
order-by-type = false
[tool.pyright]
include = ["adafilt", "tests"]