-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (24 loc) · 954 Bytes
/
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
from distutils.core import setup
from os import path
from setuptools import find_packages
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(
name='trtokenizer',
# packages=['trtopicter'],
packages=find_packages(),
include_package_data=True,
version='0.0.3',
license='MIT',
description='Sentence and word tokenizers for the Turkish language',
long_description_content_type='text/markdown',
long_description=long_description,
author='Apdullah YAYIK',
author_email='[email protected]',
url='https://github.com/apdullahyayik/TrTokenizer',
download_url='https://github.com/apdullahyayik/TrTokenizer/archive/refs/tags/0.0.3.tar.gz',
keywords=['sentence tokenizer', 'word tokenizer', 'Turkish language', 'natural language processing'],
install_requires=['regex'],
python_requires='>=3.4'
)