-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (30 loc) · 895 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
from setuptools import find_packages, setup
setup(
name="deepsportradar-player-reidentification",
version="1.1.0",
description="Deep Learning Library for Basketball Player Re-identification for the DeepSportradar ReID Challenge", # FIXME
author="Davide Zambrano & Vladimir Somers",
author_email="d.zambrano@sportradar.com, v.somers@sportradar.com",
url="https://github.com/DeepSportRadar/player-reidentification-challenge",
license="MIT",
install_requires=[
"numpy",
"scipy",
"torch>=1.8.1",
"torchvision",
"six",
"h5py",
"Pillow",
"scikit-learn",
"metric-learn",
],
extras_require={
"docs": ["sphinx", "sphinx_rtd_theme"],
},
packages=find_packages(),
keywords=[
"Person Re-identification",
"Computer Vision",
"Deep Learning",
],
)