forked from facebookresearch/pycls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (26 loc) · 869 Bytes
/
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
#!/usr/bin/env python3
# Copyright (c) Facebook, Inc. and its affiliates.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
"""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"],
)