-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
40 lines (38 loc) · 1.19 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
from setuptools import find_packages, setup
with open("./README.md", "r") as f:
long_description = f.read()
setup(
name="YOLOv8_Explainer",
version="0.0.05",
description="Python packages that enable XAI methods for YOLOv8",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Spritan/YOLOv8_Explainer",
# Github="https://github.com/Spritan/YOLOv8_Explainer",
author="Spritan",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
"Programming Language :: Python",
"Operating System :: OS Independent",
],
install_requires=[
"grad-cam==1.4.8",
"ultralytics",
"Pillow",
"tqdm",
"torch",
"matplotlib",
],
extras_require={
"dev": ["twine>=4.0.2"],
},
project_urls={
'Homepage': 'https://spritan.github.io/YOLOv8_Explainer/', # Homepage URL
'Source': 'https://github.com/Spritan/YOLOv8_Explainer', # GitHub URL
},
)