-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.07 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="qs-kpa",
version="0.0.1",
description="Quantitative Summarization – Key Point Analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/VietHoang1512/KPA",
author="Phan Viet Hoang",
author_email="[email protected]",
license="Apache License 2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Natural Language :: English",
],
python_requires=">=3.7",
packages=setuptools.find_packages(exclude=["scripts", "bin", ".circleci", "assets", "paper"]),
package_dir={"qs_kpa": "qs_kpa"},
include_package_data=True,
install_requires=[
"transformers>=4.1.0,<5.0.0",
"tqdm",
"torch>=1.6.0",
"numpy",
"sklearn",
"scipy",
"pandas",
"gdown",
"pytorch-metric-learning",
],
)