-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (52 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
60 lines (52 loc) · 1.79 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
[build-system]
requires = ["setuptools >= 64.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sdialog"
authors = [
{ name="Sergio Burdisso", email="[email protected]" }
]
maintainers = [
{ name="Sergio Burdisso", email="[email protected]" },
{ name="Severin Baroudi", email="[email protected]" },
{ name="Yanis Labrak", email="[email protected]" },
]
description = "Synthetic Dialogue Generation and Analysis"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
Homepage = "https://sdialog.readthedocs.io"
Issues = "https://github.com/idiap/sdialog/issues"
Source = "https://github.com/idiap/sdialog"
Documentation = "https://sdialog.readthedocs.io"
[tool.setuptools.dynamic]
version = {attr = "sdialog.util.__version__"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies = {audio = {file = ["requirements-audio.txt"]}}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
sdialog = ["**/*.yaml", "**/*.j2", "evaluation/dialog2flow/util/visualization/**"]
[tool.pytest.ini_options]
pythonpath = "src/"
norecursedirs = "tutorials/dscaper"
addopts = [
"--import-mode=importlib",
]
[tool.flake8]
max-line-length = 120