-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
30 lines (28 loc) · 1.02 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="fuzzychinese",
version="0.1.5",
author="znwang25",
author_email="znwang25@gmail.com",
description="A small package to fuzzy match chinese words 中文模糊匹配",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/znwang25/fuzzychinese",
packages=setuptools.find_packages(),
install_requires=[
'scikit-learn','pandas', 'numpy'
],
classifiers=[
'Intended Audience :: Developers',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: Chinese (Traditional)",
'Topic :: Text Processing :: Linguistic',
'Topic :: Text Processing',
],
keywords='NLP,fuzzy matching,Chinese word',
package_data={'fuzzychinese': ['*.*']})