-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpyproject.toml
39 lines (36 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
[tool.poetry]
name = "keras-mdn-layer"
version = "0.5.0"
description = "An MDN Layer for Keras using TensorFlow's distributions module"
authors = ["Charles Martin <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/cpmpercussion/keras-mdn-layer"
repository = "https://github.com/cpmpercussion/keras-mdn-layer"
keywords = ["mixture density layer", "neural network", "machine learning"]
classifiers = ['Topic :: Scientific/Engineering :: Artificial Intelligence']
[tool.poetry.dependencies]
python = "3.11.*"
numpy = "^1.26.4"
tensorflow-probability = "0.24.0"
tensorflow = "2.16.2"
tf-keras = "^2.16.0"
tensorflow-io-gcs-filesystem = [
{platform="darwin", version = "^0.37.1"},
{platform="linux", version = "^0.37.1"},
{platform = "win32", version = "0.31.0"},
]
tensorflow-intel = {version="^2.16.2", platform = "win32"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
flake8 = "^7.0.0"
jupyter = "^1.0.0"
matplotlib = "^3.8.4"
ipympl = "^0.9.4"
pandas = "^2.2.2"
svgwrite = "^1.4.3"
black = "^24.8.0"
coveralls = "^4.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"