-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
38 lines (35 loc) · 1.57 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='trnlp',
version='0.2.3a0',
description='Türkçe doğal dil işleme araçları',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/brolin59/trnlp',
download_url='https://github.com/brolin59/trnlp/archive/0.2.3a0.tar.gz',
author='Esat Mahmut Bayol',
author_email='[email protected]',
license='GNU General Public License v3 (GPLv3)',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: Information Technology',
'Environment :: Win32 (MS Windows)',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.7',
],
keywords=['türkçe', 'doğal', 'dil', 'işleme', 'nlp', 'ddi', 'trnlp'],
packages=find_packages(),
include_package_data=True,
python_requires='>=3.5',
project_urls={
'Documentation': 'https://github.com/brolin59/trnlp/wiki',
'Source' : 'https://github.com/brolin59/trnlp/tree/master/trnlp',
},
)