-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 820 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 820 Bytes
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
[tool.poetry]
packages = [ { include = "brainframe/api" } ]
name = "brainframe-api"
version = "0.30.4"
description = "Provides a Python wrapper around the BrainFrame REST API."
authors = ["Aotu"]
license = "BSD-3-Clause"
readme = "README.rst"
homepage = "https://github.com/aotuai/brainframe_python"
documentation = "https://brainframe-python-api.readthedocs.io/en/latest/"
classifiers = [
"License :: OSI Approved :: BSD License",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[tool.poetry.dependencies]
python = "^3.6"
requests = "^2.24.0"
# Pillow 8.4 doesn't seem to come precompiled
pillow = ">=7.0.0"
numpy = "^1.16"
dataclasses = { version = "^0.7", python = ">=3.6,<3.7" }
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"