-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (56 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
63 lines (56 loc) · 1.27 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[project]
name = "speech-map"
version = "0.1.2"
description = "Mean Average Precision over n-grams / words with speech features"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{ name = "Maxime Poli" },
]
keywords = ["machine learning", "speech"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy>=1.26.4",
"polars>=1.36.1",
"torch>=2.6.0",
"tqdm>=4.67.1",
]
[project.urls]
repository = "https://github.com/bootphon/speech-map"
[dependency-groups]
dev = [
"ipykernel>=6.29.5",
"ruff>=0.12.0",
]
[build-system]
requires = ["flit_core>=3.12.0,<4"]
build-backend = "flit_core.buildapi"
[tool.ruff]
line-length = 119
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"COM812",
"D107",
"D203",
"D213",
"N812",
"PLC0415",
"PLR0913",
"T201",
]
[tool.ruff.lint.pylint]
allow-magic-value-types = ["int"]
[tool.ruff.lint.pydocstyle]
convention = "google"