-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec4f35b
commit e3981fc
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
from setuptools import setup, find_packages | ||
from version import __version__ | ||
import codecs | ||
import os | ||
|
||
here = os.path.abspath(os.path.dirname(__file__)) | ||
|
||
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh: | ||
long_description = "\\n" + fh.read() | ||
|
||
setup( | ||
name="ai21_tokenizer", | ||
version=__version__, | ||
author="AI21 Labs", | ||
author_email="support@ai21.com", | ||
description="Library for tokenizing text using AI21 Labs' Jurassic tokenizer", | ||
url="https://github.com/AI21Labs/ai21_tokenizer", | ||
long_description_content_type="text/markdown", | ||
long_description=long_description, | ||
packages=find_packages(exclude=["tests", "tests.*", "ci_scripts"]), | ||
install_requires=[], | ||
keywords=["python", "tokenizer", "ai", "ai21", "jurassic"], | ||
classifiers=[ | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
"Operating System :: Unix", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
], | ||
) |