-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (49 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
60 lines (49 loc) · 1.59 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
[project]
name = "vocolab-extensions"
readme = "README.md"
description = "Library allowing extension of specific functionalities of the vocolab platform"
authors = [
{name = "Nicolas Hamilakis", email="nicolas.hamilakis@ens.psl.eu"},
{name = "CoML Team", email = "dev@zerospeech.com"}
]
license = {file = "LICENSE.txt"}
requires-python = ">=3.8"
keywords = [
"speech", "machine-learning", "challenges",
"research-tool", "benchmark-speech", "zerospeech"
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research"
]
dependencies = [
"importlib_metadata;python_version<'3.10'",
"PyYaml",
"toml;python_version<'3.11'"
]
dynamic = ["version"]
[project.urls]
documentation = "https://github.com/zerospeech/vocolab-extensions/wiki"
homepage = "https://zerospeech.com/"
repository = "https://github.com/zerospeech/vocolab-extensions"
[project.scripts]
ld-managers = "vocolab_ext.leaderboards:list_items"
[project.optional-dependencies]
dev = [
"ipython",
"pytest",
"twine",
"build",
]
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["vocolab_ext*"]
exclude = ["tests*", "scripts*", "containers*", "samples*", "namespace-test*"]
[tool.setuptools.package-data]
vocolab = ['*.jinja2', '*.service', '*.socket', '*.wsgi', '*.conf', '*.env', '*.config']
[tool.setuptools_scm]