-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (32 loc) · 869 Bytes
/
setup.py
File metadata and controls
33 lines (32 loc) · 869 Bytes
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
from setuptools import find_packages, setup
setup(
name="vit",
version="0.1.0",
description="VIT for Leaf Disease detection",
author="divital-coder",
author_email="divital2004@gmail.com",
url="https://github.com/divital-coder",
packages=find_packages(),
install_requires=[
"torch>=2.0.0",
"torchvision",
"numpy",
"pillow",
"pyyaml",
"tensorboard",
"matplotlib",
"scikit-learn",
"pandas",
"tqdm",
"wandb",
"timm",
],
python_requires=">=3.10",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
],
)