-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
70 lines (64 loc) Β· 2.33 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "skelshop"
version = "0.1.0"
description = "Utilities for dealing with pose skeleton data, currently from OpenPose"
authors = ["Frankie Robertson <[email protected]>"]
license = "MIT"
[tool.poetry.scripts]
skelshop = 'skelshop.cmd.skelshop:skelshop'
[tool.poetry.dependencies]
python = "^3.7"
h5py = "^3.1.0"
imutils = "^0.5.3"
click = "^7.1.2"
opencv-python-headless = "^4.2.0"
torch = "^1.6.0"
more_itertools = "^8.3.0"
click_log = "^0.3.2"
ordered-set = "^4.0.1"
orjson = "==3.4.6"
numpy = "^1.19.0"
decord = "==0.4.2"
snakemake = { version = "^6.10.0", optional = true}
scenedetect = { version = "^0.5.2", optional = true}
pygame = { version = "^2.0.0", optional = true }
numba = { version = ">=0.49.1", optional = true }
matplotlib = { version = "^3.2.1", optional = true }
scikit-learn = { version = "^1.0.1", optional = true }
scipy = { version = "^1.5.0", optional = true }
face_recognition = { version = "^1.3.0", optional = true }
pandas = { version = "^1.1.4", optional = true }
seaborn = { version = "^0.11.0", optional = true }
pyarrow = { version = "^2.0.0", optional = true }
dlib = { version = "^19.22.1", optional = true }
imagesize = "^1.2.0"
hdf5plugin = "^2.3.1"
faiss-cpu = { version = "^1.6.5", optional = true }
SPARQLWrapper = { version = "^1.8.5", optional = true }
certifi = { version = "^2020.12.5", optional = true }
ray = {version = "^1.0.1", optional = true}
joblib = {version = "^1.0.0", optional = true}
sklearn-ann = {git = "https://github.com/frankier/sklearn-ann.git", rev = "7e0a0cf852240a21b0c5fd23d8ddf0c8b85d7d8e"}
pynndescent = {version = "^0.5.1", optional = true}
[tool.poetry.extras]
pipeline = ["scenedetect", "snakemake"]
play = ["pygame"]
face = ["face_recognition", "dlib"]
ssmat = ["numba", "matplotlib", "scikit-learn", "scipy"]
calibrate = ["pandas", "seaborn", "pyarrow"]
buildrefs = ["SPARQLWrapper", "certifi"]
clus = ["faiss-cpu", "pynndescent", "scikit-learn", "hdbscan", "ray", "joblib", "numba"]
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = {extras = ["pyproject"], version = "^4.3.21"}
pre-commit = "^2.4.0"
mypy = "^0.782"
tox = "^3.15.2"
mkdocs = "^1.1.2"
mkdocstrings = "^0.13.6"
mkdocs-material = "^6.1.0"
mkdocs-click = { version = "^0.1.1" }
markdown-inline-graphviz-extension-png = "^1.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"