-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 1.04 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
[tool.poetry]
name = "mukkeBude"
version = "0.1.0"
description = "A music generation library with transformer and lstm models',"
authors = ["Florian Glaser <[email protected]>", "Florian Herkommer <[email protected]>", "David Felder <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/DHBW-FN-TIT20/Komposition-eines-Musikstuecks-mittels-Neuronaler-Netze"
repository = "https://github.com/DHBW-FN-TIT20/Komposition-eines-Musikstuecks-mittels-Neuronaler-Netze"
packages = [
{ include = "mukkeBude" }
]
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
tensorflow = "2.10.*"
tensorflow-text = "2.10.0"
keras-nlp = "0.4.1"
matplotlib = "^3.7.1"
music21 = "^8.1.0"
tensorflow-io-gcs-filesystem = "0.31.0"
[tool.poetry.group.dev.dependencies]
setuptools = "^67.6.1"
wheel = "^0.40.0"
black = "^23.3.0"
flake8 = "^6.0.0"
mypy = "^1.2.0"
pre-commit = "^3.2.2"
autoflake = "^2.0.2"
build = "^0.10.0"
jupyterlab = "^3.6.3"
pdoc = "^13.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"