-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (35 loc) · 1.38 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
import setuptools
def get_long_description():
"""Reads and return README as a string."""
with open('README.md', 'rb') as f:
return f.read().decode('utf-8', errors='ignore')
with open('requirements.txt', 'r') as f:
install_requires = f.read()
setuptools.setup(
name='icu_tokenizer',
version='0.0.1',
author='Wang Ming Rui',
author_email='mingruimingrui@hotmail.com',
description="ICU based universal language tokenizer",
long_description=get_long_description(),
long_description_content_type="text/markdown",
url="https://github.com/mingruimingrui/ICU-tokenizer",
install_requires=install_requires,
packages=['icu_tokenizer', 'icu_tokenizer.bin'],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Localization',
],
license='MIT License'
)