-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.14 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
45
46
[tool.poetry]
name = "shabda"
version = "0.2.1.0"
description = "A semantic audio samples curator for livecoding software"
authors = ["Alexandre G.-Raymond <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://shabda.ndre.gr/"
repository = "https://github.com/ilesinge/shabda"
keywords = ["music", "livecoding", "tidalcycles"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Topic :: Multimedia :: Sound/Audio",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
include = ["shabda_cli.py"]
[tool.poetry.dependencies]
python = "^3.10"
freesound-api = "*"
pydub = "*"
termcolor = "*"
requests = "*"
flask = {extras = ["async"], version = "*"}
gunicorn = "*"
typer = {extras = ["all"], version = "*"}
google-cloud-texttospeech = "*"
[tool.poetry.dev-dependencies]
pylint = "*"
black = "*"
pytest = "*"
pyfakefs = "*"
pytest-mock = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
shabda = "shabda_cli:cli"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/ilesinge/shabda/issues"