-
Notifications
You must be signed in to change notification settings - Fork 147
/
setup.py
38 lines (34 loc) · 1.14 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
from setuptools import find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="easyfsl",
version="1.5.0",
description="Ready-to-use PyTorch code to boost your way into few-shot image classification",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/sicara/easy-few-shot-learning",
license="MIT",
install_requires=[
"matplotlib>=3.0.0",
"pandas>=1.5.0",
"torch>=1.5.0",
"torchvision>=0.7.0",
"tqdm>=4.1.0",
],
packages=find_packages(),
python_requires=">=3.6",
entry_points={},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
],
)