-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (50 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
58
[project]
name = "tarzan"
description = "high-level IO for tar based dataset"
version = "0.1.0"
authors = [
{ name = "Yuchao Zhang", email = "[email protected]" },
]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["datasets", "tar"]
dependencies = [
"numpy~=1.0",
"soundfile~=0.12.1",
"librosa~=0.10.1",
"dill~=0.3.7",
"more-itertools~=10.2.0",
]
[project.optional-dependencies]
test = [
"pytest",
]
dev = [
"black",
"flake8",
"flake8-bugbear",
"flake8-comprehensions",
"flake8-print",
"isort",
"mypy",
"pep8-naming",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
only-include = ["tarzan"]
[tool.hatch.build.targets.wheel]
only-include = ["tarzan"]
[tool.black]
target-version = ['py38']
include = '\.pyi?$'
extend-exclude = '(_version.py)'
[tool.isort]
atomic = true
profile = "black"
skip_gitignore = true
skip_glob = ["**/gen/*", ".venv*/*", "venv*/*"]
known_first_party = ["tarzan"]
# see https://github.com/timothycrosley/isort#multi-line-output-modes for details
multi_line_output = 3