forked from Shivanandroy/KeyPhraseTransformer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (46 loc) · 1.52 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
39
40
41
42
43
44
45
46
47
48
49
import setuptools
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="keyphrasetransformer",
version="0.0.2",
license="apache-2.0",
author="Shivanand Roy",
author_email="[email protected]",
description="Quickly extract key-phrases/topics from you text data with T5 transformer.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Shivanandroy/KeyPhraseTransformer",
project_urls={
"Repo": "https://github.com/Shivanandroy/KeyPhraseTransformer",
"Bug Tracker": "https://github.com/Shivanandroy/KeyPhraseTransformer/issues",
},
keywords=[
"keyword extraction",
"keyphrase extraction",
"keyphrase",
"extraction"
"T5",
"simpleT5",
"transformers",
"NLP"
],
packages=setuptools.find_packages(),
python_requires=">=3.5",
install_requires=[
"nltk",
"transformers"
],
classifiers=[
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)