forked from THUDM/icetk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 862 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
# Copyright (c) Wendi Zheng and Ming Ding, et al. in KEG, Tsinghua University.
#
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import json
from pathlib import Path
from setuptools import find_packages, setup
def _requirements():
return Path("requirements.txt").read_text()
setup(
name="icetk",
version='0.0.4',
description="A unified tokenization tool for Images, Chinese and English.",
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
install_requires=_requirements(),
entry_points={},
packages=find_packages(),
url="https://github.com/THUDM/icetk",
author="Wendi Zheng and Ming Ding",
scripts={},
include_package_data=True,
python_requires=">=3.5",
license="MIT license"
)