-
-
Notifications
You must be signed in to change notification settings - Fork 127
/
setup.py
36 lines (29 loc) · 1 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
import setuptools
__packagename__ = 'malaya'
def readme():
with open('README-pypi.rst') as f:
return f.read()
with open('requirements.txt') as fopen:
req = list(filter(None, fopen.read().split('\n')))
setuptools.setup(
name=__packagename__,
packages=setuptools.find_packages(),
version='5.1.1',
python_requires='>=3.6',
description='Natural-Language-Toolkit for bahasa Malaysia, powered by Tensorflow and PyTorch.',
long_description=readme(),
author='huseinzol05',
author_email='[email protected]',
url='https://github.com/huseinzol05/Malaya',
download_url='https://github.com/huseinzol05/Malaya/archive/master.zip',
keywords=['nlp', 'bm'],
install_requires=req,
license='MIT',
classifiers=[
'Programming Language :: Python :: 3.6',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Text Processing',
],
)