| from setuptools import setup, find_packages | |
| with open("requirements.txt") as f: | |
| requirements = f.read().splitlines() | |
| setup( | |
| name = "Clothing-Attribute_detection-Computer-Vision", | |
| version = "0.0.1", | |
| packages = find_packages(), | |
| install_requires = requirements, | |
| ) |