-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1023 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
36
37
38
39
40
[tool.poetry]
name = "tf-al"
version = "0.1.1"
description = "Active learning with tensorflow. Create custom and generic active learning loops. Export and share your experiments."
authors = ["Maksim Sandybekov <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/ExLeonem/tf-al"
keywords = [
"active learning",
"deep learning",
"tensorflow"
]
[tool.poetry.dependencies]
python = "^3.6"
tensorflow = "^2"
#tensorflow-datasets = "^4.4.0"
scikit-learn = "^0.24.2"
numpy = "^1"
tqdm = "^4.62.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
coveralls = "^3.2.0"
Sphinx = "^3.0.0"
sphinx-book-theme = "^0.1.3"
pydata-sphinx-theme = "^0.6.3"
sphinxcontrib-applehelp = "^1.0.2"
sphinxcontrib-devhelp = "^1.0.2"
sphinxcontrib-htmlhelp = "^2.0.0"
sphinxcontrib-jsmath = "^1.0.1"
sphinxcontrib-qthelp = "^1.0.3"
sphinxcontrib-serializinghtml = "^1.1.5"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"