forked from bootphon/tdev2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (54 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
59 lines (54 loc) · 1.61 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
[project]
name = "zerospeech-tde"
readme = "README.md"
description = "Evaluation toolbox for Term Discovery systems"
authors = [
{name = "Julien Karadayi", email="julien.karadayi@inria.fr"},
{name = "CoML Team", email = "dev@zerospeech.com"}
]
license = {file = "LICENSE.txt"}
requires-python = ">=3.6"
keywords = [
"speech", "machine-learning", "challenges",
"research-tool", "benchmark-speech", "zerospeech"
]
classifiers = [
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research"
]
dependencies = [
'editdistance',
'joblib',
'intervaltree',
'importlib_metadata; python_version < "3.8"'
]
dynamic = ["version"]
[project.urls]
documentation = "https://docs.cognitive-ml.fr/tde/"
source_repository = "https://github.com/bootphon/tdev2"
zerospeech_task = "https://zerospeech.com/tasks/task_2/tasks_goals/"
zerospeech_fork = "https://github.com/zerospeech/tdev2"
[project.optional-dependencies]
dev = [
"setuptools_scm",
"ipython",
"pytest",
"twine",
"build"
]
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["tde*"]
exclude = ["examples*", "tests*", "docs*", '.conda/*']
[tool.setuptools.package-data]
tde = ['share/*']
[tool.setuptools_scm]