forked from Jingkang50/OpenOOD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 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
import setuptools
with open('README.md', 'r', encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name='openood',
version='1.5',
author='openood dev team',
author_email='[email protected]',
description=
'This package provides a unified test platform for Out-of-Distribution detection.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/Jingkang50/OpenOOD',
packages=setuptools.find_packages(),
install_requires=[
'torch>=1.13.1', 'torchvision>=0.13', 'scikit-learn', 'json5',
'matplotlib', 'scipy', 'tqdm', 'pyyaml>=5.4.1', 'pre-commit',
'opencv-python>=4.4.0.46', 'imgaug>=0.4.0', 'pandas', 'diffdist>=0.1',
'Cython>=0.29.30', 'faiss-gpu>=1.7.2', 'gdown>=4.7.1', 'libmr>=0.1.9'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
include_package_data=True,
)