-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (64 loc) · 1.86 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from setuptools import find_packages, setup
install_requires = [
"Pillow",
"numpy",
"optuna",
"scikit-learn",
"scikit-image",
"timm>=0.8.19.dev0",
"torch>=1.13.1",
"torchvision",
"tqdm",
"scipy",
"accelerate",
"psutil",
"pandas",
"wilds",
"faiss-cpu",
"matplotlib",
]
setup(
name="detectors",
version="{{VERSION_PLACEHOLDER}}",
author="Eduardo Dadalto with the help of all our contributors.",
author_email="[email protected]",
description="Detectors: a python package to benchmark generalized out-of-distribution detection methods.",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="vision deep learning pytorch OOD",
license="APACHE 2.0",
url="https://github.com/edadaltocg/detectors",
package_dir={"": "src"},
packages=find_packages("src"),
include_package_data=True,
python_requires=">=3.8.0",
install_requires=install_requires,
extras_require={
"dev": [
"black",
"isort",
"flake8",
"pytest",
"pytest-cov",
"pytest-timeout",
"pytest-xdist",
"twine",
"sphinx",
"sphinx_rtd_theme",
"myst-parser",
"six",
]
},
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)