forked from tlpss/keypoint-detection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.04 KB
/
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
from setuptools import find_packages, setup
setup(
name="keypoint_detection",
author="Thomas Lips",
author_email="[email protected]",
version="1.0",
description="Pytorch Models, Modules etc for keypoint detection",
url="https://github.com/tlpss/keypoint-detection",
packages=find_packages(exclude=("test",)),
install_requires=[
"torch>=0.10",
"torchvision>=0.11",
"pytorch-lightning>=1.5.10,<=1.9.4", # PL 2.0 has breaking changes that need to be incorporated
"torchmetrics>=0.7",
"wandb>=0.13.7", # artifact bug https://github.com/wandb/wandb/issues/4500
"timm>=0.6.11", # requires smallsized convnext models
"tqdm",
"pytest",
"pre-commit",
"scikit-image",
"albumentations",
"matplotlib",
# for labeling package, should be moved in time to separate setup.py
"xmltodict",
"pydantic",
"fiftyone",
],
entry_points={"console_scripts": ["keypoint-detection = keypoint_detection.tasks.cli:main"]},
)