Skip to content

Commit 6de9895

Browse files
authored
Merge pull request #9 from aotuai/feature/use-poetry
Switch to poetry
2 parents dd17c6d + 2ec5649 commit 6de9895

3 files changed

Lines changed: 195 additions & 0 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
*.egg-info
2+
.eggs/
3+
dist/
4+
25
.idea/
36
*.pyc
47

poetry.lock

Lines changed: 165 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[tool.poetry]
2+
packages = [ { include = "brainframe/api" } ]
3+
name = "brainframe-api"
4+
version = "0.27.0"
5+
description = "Provides a Python wrapper around the BrainFrame REST API."
6+
authors = ["Aotu"]
7+
license = "BSD-3-Clause"
8+
readme = "README.rst"
9+
homepage = "https://github.com/aotuai/brainframe_python"
10+
documentation = "https://brainframe-python-api.readthedocs.io/en/latest/"
11+
classifiers = [
12+
"License :: OSI Approved :: BSD License",
13+
"Topic :: Scientific/Engineering :: Artificial Intelligence"
14+
]
15+
16+
[tool.poetry.dependencies]
17+
python = "^3.6"
18+
requests = "^2.24.0"
19+
pillow = "^7.2.0"
20+
numpy = "^1.19.1"
21+
dataclasses = "^0.7"
22+
23+
[tool.poetry.dev-dependencies]
24+
25+
[build-system]
26+
requires = ["poetry>=0.12"]
27+
build-backend = "poetry.masonry.api"

0 commit comments

Comments
 (0)