-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
52 lines (48 loc) · 1.87 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
47
48
49
50
51
52
[tool.poetry]
name = "impsy"
version = "0.5.6"
description = "IMPSY is the Interactive Musical Prediction SYstem, a tool for creative interactive intelligent musical instruments using a recurrent mixture density neural network."
authors = ["Charles Martin <cpm@charlesmartin.au>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/cpmpercussion/impsy"
repository = "https://github.com/cpmpercussion/impsy"
[tool.poetry.dependencies]
python = "==3.11.*"
tensorflow-io-gcs-filesystem = [
{platform = "win32", version = "0.31.0"},
{platform = "darwin", version = "~0.36.0"},
{platform = "linux", version = "~0.36.0"},
]
tensorflow = [
{markers="sys_platform == 'darwin' and platform_machine == 'x86_64'", version = "2.15.0"},
{markers="sys_platform == 'linux' and platform_machine == 'x86_64'", version = "2.15.0"},
{platform = "win32", version = "2.15.0"},
]
tensorflow-intel = {version="2.15.0", platform = "win32"}
tensorflow-macos = {markers="sys_platform == 'darwin' and platform_machine == 'arm64'", version = "2.15.0"}
tensorflow-probability = "0.23.0"
h5py = "~3.10.0"
python-osc = "^1.8.3"
keras-mdn-layer = "~0.4.2"
pyserial = "^3.5"
websockets = "^12.0"
mido = "^1.3.2"
python-rtmidi = "^1.5.8"
click = "^8.1.7"
pandas = "^2.2.2"
flask = "^3.0.3"
psutil = "^6.0.0"
[tool.poetry.group.dev.dependencies]
# keras-mdn-layer = { git = "https://github.com/cpmpercussion/keras-mdn-layer.git", branch = "master" }
pytest = "^8.2.2"
flake8 = "^7.0.0"
black = "^24.4.2"
coveralls = "^4.0.1"
[tool.poetry.group.rpi.dependencies]
tensorflow = [
{markers="sys_platform == 'linux' and platform_machine == 'aarch64'", url="https://github.com/PINTO0309/Tensorflow-bin/releases/download/v2.15.0.post1/tensorflow-2.15.0.post1-cp311-none-linux_aarch64.whl"}, # this is specifically for Raspberry Pis.
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"