-
Notifications
You must be signed in to change notification settings - Fork 350
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 688 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
setup(name='open-reid',
version='0.2.0',
description='Deep Learning Library for Person Re-identification',
author='Tong Xiao',
author_email='[email protected]',
url='https://github.com/Cysu/open-reid',
license='MIT',
install_requires=[
'numpy', 'scipy', 'torch', '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',
])