-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (33 loc) · 1.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
37
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Programming Language :: Python :: 3',
]
setup(
name='sswcleaner',
version='0.1.0',
description='SISWATI TEXT CLEANING LIBRARY FOR NLP TASKS',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/BrianMsane/SiSwati-Project.git',
author='BrianMsane',
author_email='[email protected]',
maintainer= "BrianMsane",
maintainer_email="[email protected]",
license='GNU General Public License (GPL)',
classifiers=classifiers,
keywords=['siSwati Text Cleaner', 'AfricanNLP', "siSwati", "Research", "Africa"],
packages=find_packages(),
python_requires='>=3.6',
install_requires=[
'nltk',
'pandas'
],
extra_requires = {
'dev': ['twine']
}
)