]> git.immae.eu Git - perso/Immae/Projets/Python/MusicSampler.git/blame - pyproject.toml
Add config
[perso/Immae/Projets/Python/MusicSampler.git] / pyproject.toml
CommitLineData
7b4791cf
IB
1[tool.poetry]
2name = "music_sampler"
3version = "1.6.0"
4description = "A music player which associates each key on the keyboard to a set of actions to run"
5authors = ["Ismaël Bouya <ismael.bouya@normalesup.org>", "Denise Maurice <denise.maurice@normalesup.org"]
6license = "MIT"
7keywords = ["music", "sampler", "keyboard"]
8readme = "README"
9homepage = "https://git.immae.eu/cgit/perso/Immae/Projets/Python/MusicSampler.git/about/"
10repository = "https://git.immae.eu/perso/Immae/Projets/Python/MusicSampler.git"
11include = [
12 "music_sampler/locales/fr/LC_MESSAGES/*.mo",
13 "run.py"
14]
15classifiers = [
16 'Development Status :: 5 - Production/Stable',
17 'Intended Audience :: End Users/Desktop',
18 'Topic :: Multimedia :: Sound/Audio :: Players'
19]
20
21[tool.poetry.dependencies]
22python = "^3.9"
23pydub = "^0.25.1"
24sounddevice = "^0.4.2"
25transitions = "^0.8.8"
26PyYAML = "^5.4.1"
27Kivy = "^2.0.0"
28
29[tool.poetry.dev-dependencies]
30Markdown = "^3.3.4"
31Pygments = "^2.10.0"
32shiv = "^0.5.2"
33pyinstaller = "^4.5.1"
34setuptools-scm = "^6.0.1"
35
36[tool.poetry.scripts]
37music_sampler = "music_sampler.app:main"
38
39[build-system]
40requires = ["poetry-core>=1.0.0"]
41build-backend = "poetry.core.masonry.api"