-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (35 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
31
32
33
34
35
36
37
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text(encoding='utf8')
setup(
name='UniTok',
version='4.3.4',
keywords=['token', 'tokenizer', 'NLP', 'transformers', 'glove', 'bert', 'llama'],
description='Unified Tokenizer',
long_description=long_description,
long_description_content_type='text/markdown',
license='MIT Licence',
url='https://github.com/Jyonn/UnifiedTokenizer',
author='Jyonn Liu',
author_email='[email protected]',
platforms='any',
packages=find_packages(),
install_requires=[
'termplot==0.0.2',
'tqdm',
'numpy',
'pandas',
'transformers',
'oba',
'prettytable',
'rich'
],
entry_points={
'console_scripts': [
'unitokv3 = UniTokv3.__main__:main',
'unidep-upgrade-v4 = UniTokv3.__main__:upgrade',
'unitok = unitok.__main__:main'
]
}
)