-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (33 loc) · 971 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
[tool.poetry]
name = "anguilla-iml"
packages = [{ include = "anguilla", from = "src"}]
version = "0.2.2b0"
description = "a package for interactive machine learning"
authors = ["Victor Shepardson <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
numpy = "^1.23"
scipy = "^1.13.1"
faiss-cpu = "^1.7"
iipyper = {path = "../iipyper", develop = true}
torch = {version = "~2.1.0", optional = true}
[tool.poetry.extras]
torch = ["torch"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.3"
mkdocs = "^1.5.3"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
mkdocs-gen-files = "^0.5.0"
mkdocs-include-markdown-plugin = "^6.0.4"
mkdocs-material = "^9.4.8"
mkdocs-material-extensions = "^1.3"
mkdocs-autorefs = "^0.5.0"
matplotlib = "*"
seaborn = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
anguilla = 'anguilla.__main__:_main'