"""Setup pycls."""
from setuptools import find_packages, setup
def readme():
"""Retrieves the readme content."""
with open("README.md", "r") as f:
content = f.read()
return content
setup(
name="pycls",
version="0.1.1",
description="A codebase for image classification",
long_description=readme(),
long_description_content_type="text/markdown",
url="https://github.com/facebookresearch/pycls",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
],
install_requires=["numpy", "opencv-python", "simplejson", "yacs"],
)