-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 879 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="question_score",
version="0.0.7",
description="library for question evaluation including KDA, Knowledge Dependent Answerability introduced in EMNLP 2022 work.",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=[
"transformers",
"sentencepiece",
"pytorch-lightning",
],
author="Riiid NLP team",
author_email="[email protected]",
url="https://github.com/riiid/question-score",
license="Creative Commons Attribution-NonCommercial-ShareAlike 4.0."
" https://creativecommons.org/licenses/by-nc-sa/4.0/",
classifiers=[
"Programming Language :: Python :: 3",
],
python_requires=">=3.6",
)