-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (66 loc) · 1.81 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
67
68
69
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",
]
dev_requires = [
"black",
"isort",
"flake8",
"pytest",
"pytest-cov",
"pytest-timeout",
"pytest-xdist",
"twine",
"sphinx",
"sphinx_rtd_theme",
"myst-parser",
"six",
]
setup(
name="detectors",
# version="{{VERSION_PLACEHOLDER}}",
version="0.1.11",
author="Eduardo Dadalto",
author_email="edadaltocg@gmail.com",
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="computer vision, deep learning, pytorch, out-of-distribution detection, 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": dev_requires,
},
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",
],
)