-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
58 lines (56 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
import setuptools
setuptools.setup(
name="DeezyMatch",
version="1.3.4",
description="A Flexible Deep Learning Approach to Fuzzy String Matching and Candidate Ranking",
author=u"The LwM Development Team",
#author_email="",
license="MIT License",
keywords=["Fuzzy String Matching", "Deep Learning", "NLP", "Natural Language Processing", "living with machines"],
long_description = open('README.md').read(),
long_description_content_type = 'text/markdown',
zip_safe = False,
url="https://github.com/Living-with-machines/DeezyMatch",
download_url="https://github.com/Living-with-machines/DeezyMatch/archive/master.zip",
packages = setuptools.find_packages(),
include_package_data = True,
platforms="OS Independent",
python_requires='>=3.9',
install_requires=[
"torch>=1.5.0",
"torchvision>=0.6.0",
"ipywidgets>=7.5.1",
"PyYAML>=5.4",
"scikit-learn>=0.23.1",
"pandas>=1.2.0",
"faiss-cpu>=1.6.3",
"tqdm>=4.57.0",
"tensorboard>=2.2.2",
"matplotlib>=3.2.1",
"jupyter-client>=6.1.5",
"jupyter-core>=4.6.3"
],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
entry_points={
'console_scripts': [
'DeezyMatch = DeezyMatch.DeezyMatch:main',
],
}
)