forked from Christopher-Thornton/hmni
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (39 loc) · 1.39 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
from setuptools import setup
with open('README.md', encoding='utf8') as f:
readme = f.read()
setup_args = dict(
name='hmni',
version='0.1.8',
description='Fuzzy Name Matching with Machine Learning',
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
packages=['hmni', 'hmni.models'],
include_package_data=True,
author='Christopher Thornton',
author_email='[email protected]',
keywords=['fuzzy-matching', 'natural-language-processing', 'nlp', 'machine-learning', 'data-science', 'python', 'artificial-intelligence', 'ai'],
url='https://github.com/Christopher-Thornton/hmni',
download_url='https://github.com/Christopher-Thornton/hmni/archive/v0.1.8.zip',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT 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'
],
)
install_requires = [
'tensorflow',
'pandas >= 0.25',
'numpy',
'unidecode',
'fuzzywuzzy',
'abydos == 0.5.0',
'scikit-learn',
'joblib'
]
if __name__ == '__main__':
setup(**setup_args, install_requires=install_requires)