Skip to content

Commit 126f8bf

Browse files
committed
build: Version 1.0.0
1 parent fd953e6 commit 126f8bf

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

setup.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
11
from setuptools import find_packages, setup
22

3+
with open("README.md") as f:
4+
long_description = f.read()
5+
36
setup(
47
name="2021-dialogue-summary-competition",
5-
version="0.0.1",
8+
version="1.0.0",
69
description="[2021 훈민정음 한국어 음성•자연어 인공지능 경진대회] 대화요약 부문 알라꿍달라꿍 팀의 대화요약 학습 및 추론 코드를 공유하기 위한 레포입니다.",
10+
long_description=long_description,
711
python_requires=">=3.7",
812
install_requires=["torch", "transformers", "pytorch-lightning", "wandb"],
913
extras_require={"rl": ["mecab-python3", "rouge"], "tokenizer": ["sentencepiece", "httpimport"]},
1014
url="https://github.com/cosmoquester/2021-dialogue-summary-competition.git",
1115
author="Park Sangjun",
16+
keywords=["nlp", "dialogue", "summarization", "huggingface-transformers", "pytorch-lightning"],
17+
classifiers=[
18+
"Programming Language :: Python :: 3",
19+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
20+
"Topic :: Text Processing",
21+
],
1222
packages=find_packages(exclude=["tests"]),
1323
)

0 commit comments

Comments
 (0)