GyuhoLee

[Add] setup 파일 추가

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