forked from maxpumperla/elephas
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
35 lines (30 loc) · 823 Bytes
/
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
[tool.poetry]
name = "elephas"
version = "6.1.0"
description = "Distributed deep learning on Spark with Keras"
readme = "README.md"
homepage = "https://danielenricocahall.github.io/elephas/"
authors = ["Daniel Cahall <danielenricocahall@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = ">=3.9,<3.12"
tensorflow = ">2.2,<=2.15.1"
Flask = "^2.3.3"
h5py = "3.11.0"
pyspark = "<=3.5.1"
Cython = "^0.29.33"
numpy = "1.23.5"
transformers = { version = "<=4.42.4", optional = true }
[tool.poetry.dev-dependencies]
pytest = "^8.3.1"
pytest-pep8 = "^1.0.6"
pytest-cov = "^5.0.0"
pytest-spark = "^0.6.0"
mock = "^5.1.0"
scikit-learn = "^1.5.1"
transformers = "^4.42.4"
[tool.poetry.extras]
huggingface = ["transformers"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"