GyuhoLee

[Add] setup 파일 추가

......@@ -19,9 +19,7 @@
<select />
</component>
<component name="ChangeListManager">
<list default="true" id="b9decb0c-dc9e-4239-bdad-09ea8dd5179d" name="Default Changelist" comment="">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
</list>
<list default="true" id="b9decb0c-dc9e-4239-bdad-09ea8dd5179d" name="Default Changelist" comment="" />
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
......
from setuptools import setup, find_packages
import textrank
setup(
name=textrank.__name__,
version=textrank.__version__,
url='http://khuhub.khu.ac.kr/2020-2-capstone-design1/HCG_project.git/',
author=textrank.__author__,
author_email='2015104194@khu.ac.kr',
description='YouTube captions summary based TextRank(Keyword and key-sentence extractor)',
packages=find_packages(),
#long_description=open('README.md', encoding="utf-8").read(),
zip_safe=False,
setup_requires=[]
)
\ No newline at end of file