-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (27 loc) · 968 Bytes
/
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
import os
from setuptools import find_packages, setup
with open("README.md","r",encoding='utf-8') as fh:
long_des = fh.read()
setup(
name="HomoglyphsCJK",
packages=["HomoglyphsCJK"],
version="0.1.6",
author="HomoglyphsCJK Team",
author_email="homoglyphscjk@gmail.com",
description="An easy Python package for fuzzy matching Chinese(simplified and traditional), Japanese and Korean, using character similarity trained from ViT transformer",
long_description=long_des,
long_description_content_type="text/markdown",
url="https://github.com/dell-research-harvard/HomoglyphsCJK.git",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[ # I get to this in a second
'gdown==4.7.1',
'pandas',
'tqdm',
'numpy',
'multiprocess'
]
)