-
Notifications
You must be signed in to change notification settings - Fork 491
Expand file tree
/
Copy pathpyproject.toml
More file actions
25 lines (21 loc) · 521 Bytes
/
Copy pathpyproject.toml
File metadata and controls
25 lines (21 loc) · 521 Bytes
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
[project]
name = "DeepFilterLib"
version = "0.5.7-pre"
classifiers = ["Programming Language :: Rust"]
requires-python = ">=3.8"
dependencies = ["numpy >= 1.22"]
[build-system]
requires = ["maturin>=1.3,<1.5"]
build-backend = "maturin"
[tool.maturin]
sdist-include = ["Cargo.lock"]
strip = true
[tool.black]
line-length = 100
target-version = ["py38", "py39", "py310", "py311"]
include = '\.pyi?$'
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
known_first_party = ["df", "libdf", "libdfdata"]