-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.71 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
[project]
name = "conette"
authors = [
{name = "Etienne Labbé (Labbeti)", email = "labbeti.pub@gmail.com"},
]
description = "CoNeTTE is an audio captioning system, which generate a short textual description of the sound events in any audio file."
readme = "README.md"
requires-python = ">=3.10"
keywords = ["audio", "deep-learning", "pytorch", "captioning", "audio-captioning"]
license = {file = "LICENSE"}
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
maintainers = [
{name = "Etienne Labbé (Labbeti)", email = "labbeti.pub@gmail.com"},
]
dynamic = ["version", "dependencies", "optional-dependencies"]
[project.urls]
Repository = "https://github.com/Labbeti/conette-audio-captioning.git"
Changelog = "https://github.com/Labbeti/conette-audio-captioning/blob/main/CHANGELOG.md"
[project.scripts]
conette-info = "conette.info:print_install_info"
conette-predict = "conette.predict:main_predict"
conette-train = "conette.train:main_train"
conette-prepare = "conette.prepare:main_prepare"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["conette*"] # package names should match these glob patterns (["*"] by default)
[tool.setuptools.dynamic]
version = {attr = "conette.__version__"}
dependencies = {file = ["requirements.txt"]}
optional-dependencies = { dev = { file = ["requirements-dev.txt"] }, train = { file = ["requirements-train.txt"]}, test = { file = []}}
[tool.ruff]
ignore = ["E501", "E402"]