-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.41 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
"""Setup.py for pysentence-similarity package."""
from setuptools import setup, find_packages
setup(
name="pysentence-similarity",
version="1.0.1",
author="goldpulpy",
author_email="sawsani1928@gmail.com",
description="PySentence-Similarity is a tool designed to identify and "
"find similarities between sentences and a base sentence, expressed "
"as a percentage.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/goldpulpy/pysentence-similarity",
project_urls={
"Documentation": "https://github.com/goldpulpy/"
"pysentence-similarity#readme",
"Issues": "https://github.com/goldpulpy/"
"pysentence-similarity/issues",
"Homepage": "https://github.com/goldpulpy/pysentence-similarity",
},
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
],
keywords="sentence similarity NLP natural language processing",
python_requires='>=3.8',
install_requires=[
"tokenizers",
"onnxruntime-gpu",
"beautifulsoup4",
"platformdirs",
"h5py"
],
)