-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (43 loc) · 1.35 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
from distutils.core import setup
from setuptools import setup, find_packages
long_description = open("README.md", "r").read()
setup(
name="easy_explain",
packages=find_packages(),
version="0.5.0",
license="MIT",
description="A library that helps to explain AI models in a really quick & easy way",
long_description=long_description,
long_description_content_type="text/markdown",
author="Stavros Theocharis",
author_email="stavrostheocharis@yahoo.gr",
url="https://github.com/stavrostheocharis/stavrostheocharis",
download_url="https://github.com/stavrostheocharis/easy_explain/archive/refs/tags/v0.5.0.tar.gz",
keywords=[
"explainable ai",
"xai",
"easy explain",
],
install_requires=[
"backports.weakref",
"captum",
"matplotlib",
"opencv-python",
"Pillow",
"scikit-learn",
"scipy",
"torch",
"torchcam",
"torchvision",
"ultralytics",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)