forked from boostcampaitech2/final-project-level3-cv-06
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 755 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
import io
from setuptools import find_packages, setup
# Read in the README for the long description on PyPI
# def long_description():
# with io.open('README.rst', 'r', encoding='utf-8') as f:
# readme = f.read()
# return readme
setup(name='final-project-level3-cv-06',
version='0.1',
description='공항 위해 물품 탐지',
# long_description=long_description(),
long_description="나중에",
url='https://github.com/boostcampaitech2/final-project-level3-cv-06',
author='AI_Tech_2_CV-06_Team',
author_email='[email protected]',
license='unknown',
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3.6',
],
zip_safe=False)