-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
49 lines (41 loc) · 1.17 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
import setuptools
from setuptools import setup
from setuptools import setup, find_packages
setup_requires = [
]
install_requires = [
"torch>=2.5.0",
"torchvision>=0.20.0",
"torchaudio>=2.5.0",
"pillow>=11.0.0",
"transformers>=4.46.1",
"wandb",
"tqdm",
"scikit-learn",
"gradio",
"faiss-gpu",
"sqlalchemy",
],
# long description을 README.md로 대체하기 위한 작업
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
version='0.1.1',
name='fashion_recommenders',
description='An easy-to-use PyTorch-based package for fashion recommendation models',
long_description=long_description,
long_description_content_type="text/markdown",
author='Wonjun, Oh',
author_email='[email protected]',
packages=find_packages(where='src'),
url='https://github.com/owj0421/fashion_recommenders',
license='MIT',
python_requires='>=3.10',
setup_requires=setup_requires,
install_requires = install_requires,
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
)