-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (29 loc) · 875 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
[tool.poetry]
name = "mlutils"
version = "0.4.1"
description="Utilities for training and using Machine Learning models."
authors = ["Matthew Clapp <itsayellow+dev@gmail.com>"]
homepage="https://github.com/itsayellow/mlutils"
repository="https://github.com/itsayellow/mlutils"
packages=[
{ include = "mlutils" },
]
[tool.poetry.dependencies]
python = "^3.6"
numpy = "^1.18"
matplotlib = "^3.1"
#tictoc = {editable = true,git = "https://github.com/itsayellow/tictoc.git"}
# pick a tensorflow to install
tensorflow = {version = "^2.1", optional = true}
tensorflow-gpu = {version = "^2.1", optional = true}
# more user-friendly abbreviations
[tool.poetry.extras]
tf = ["tensorflow"]
tfgpu = ["tensorflow-gpu"]
[tool.poetry.dev-dependencies]
pytest = "^5.2"
pylint = "^2.4"
ptpython = "^2.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"