This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 103
/
setup.py
54 lines (49 loc) · 1.63 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
44
45
46
47
48
49
50
51
52
53
import io
import os
from setuptools import Extension, find_packages, setup
from Cython.Build import cythonize
extensions = [
Extension(
"_youtokentome_cython",
[
"youtokentome/cpp/yttm.pyx",
"youtokentome/cpp/bpe.cpp",
"youtokentome/cpp/utils.cpp",
"youtokentome/cpp/utf8.cpp",
],
extra_compile_args=["-std=c++11", "-pthread", "-O3"],
language="c++",
)
]
with io.open(
os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md"),
encoding="utf-8",
) as f:
LONG_DESCRIPTION = "\n" + f.read()
setup(
name="youtokentome",
version="1.0.6",
packages=find_packages(),
description="Unsupervised text tokenizer focused on computational efficiency",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/vkcom/youtokentome",
python_requires=">=3.5.0",
install_requires=["Click>=7.0"],
entry_points={"console_scripts": ["yttm = youtokentome.yttm_cli:main"]},
author="Ivan Belonogov",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Cython",
"Programming Language :: C++",
],
ext_modules=cythonize(extensions),
)