-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
31 lines (30 loc) · 1.19 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
from setuptools import setup, find_packages
from bahasa import __version__
setup(
name='bahasa',
packages=find_packages(),
package_data={'bahasa': ['data/kamus.txt']},
version=__version__,
description='Bahasa is natural language toolkit for bahasa indonesia',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license='MIT',
author='Sutrisno Efendi',
author_email='[email protected]',
url='https://github.com/kangfend/bahasa',
keywords=['NLP', 'Bahasa', 'Indonesia', 'Stemmer', 'Sastrawi', 'Stemming'],
install_requires=['six==1.16.0'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Topic :: Text Processing :: Linguistic',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Natural Language :: Indonesian',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)