-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathsetup.py
33 lines (31 loc) · 950 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import find_packages, setup
setup(
name="lart",
version="0.0.0",
description="Action recognition with 3D poses and tracking on any videos.",
author="Jathushan Rajasegaran",
author_email="[email protected]",
url="https://github.com/brjathu/LART", # REPLACE WITH YOUR OWN GITHUB PROJECT LINK
packages=find_packages(),
install_requires=[
"pytorch-lightning",
"lightning",
"submitit",
"pyrootutils",
"opencv-python",
"joblib",
"rich",
"einops",
"hydra-core",
"hydra-submitit-launcher",
"timm",
"phalp[all,blur] @ git+https://github.com/brjathu/PHALP.git",
],
extras_require={
'demo': [
"pytorchvideo @ git+https://github.com/facebookresearch/pytorchvideo.git",
"slowfast @ git+https://github.com/brjathu/SlowFast.git",
],
},
)