-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
44 lines (42 loc) · 1.47 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
from setuptools import setup, find_packages
# Long description from README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='aranizer',
version='0.2.5',
author='RIOTU Lab',
author_email='[email protected]',
description='Aranizer: A Custom Tokenizer for Enhanced Arabic Language Processing',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/riotu-lab/aranizer',
packages=find_packages(), # Ensure this line is correct
install_requires=[
'transformers>=4.0.0',
'sentence-transformers>=0.4.0'
],
python_requires='>=3.6',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: Arabic',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development :: Libraries :: Python Modules',
],
license='Apache 2.0',
include_package_data=True,
package_data={
'aranizer': [
'tokenizers/bpe/*.json',
'tokenizers/sp/*.json',
],
},
)