-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
38 lines (36 loc) · 1.08 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
38
from setuptools import find_packages, setup
setup(
name="dlkp",
version="0.4",
author="Amardeep Kumar || Debanjan Mahata",
author_email="[email protected]",
description="A deep learning library for keyphrase extraction and generation",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
url="https://github.com/midas-research/dlkp",
download_url="https://github.com/midas-research/dlkp/archive/refs/tags/0.1.tar.gz",
project_urls={
"Bug Tracker": "https://github.com/midas-research/dlkp/issues",
},
package_dir={"": "src"},
packages=find_packages(where="src"),
license="MIT License",
include_package_data=True,
python_requires=">=3.7",
install_requires=[
"numpy",
"requests",
"tqdm>=4.47.0",
"regex",
"transformers>=4.6.0",
"datasets",
"scipy",
"scikit-learn",
"seqeval",
"torch",
"tensorflow>=2.0",
"tensorboard",
"pandas",
"tokenizers",
]
)