-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.03 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.03 KB
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
[tool.poetry]
name = "marcelle"
version = "0.0.5"
description = "Python package for interacting with Marcelle"
authors = ["Jules Françoise <me@julesfrancoise.com>"]
maintainers = ["Jules Françoise <me@julesfrancoise.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://marcelle.dev/"
repository = "https://github.com/marcellejs/python/"
documentation = "https://marcelle.dev/api/python.html"
keywords = [
"Marcelle",
"Interactive Machine Learning",
"Tensorflow",
"Tensorflow.js",
"Keras",
"ONNX"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha"
]
[tool.poetry.dependencies]
python = ">=3.8,<3.10"
numpy = "^1.21.4"
tensorflow = "^2.7.0"
tensorflowjs = "^3.11.0"
tqdm = "^4.62.3"
filetype = "^1.0.8"
requests = "^2.26.0"
keras2onnx = "^1.7.0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"