-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
34 lines (31 loc) · 1023 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
28
29
30
31
32
33
34
from setuptools import setup, find_packages
setup(
name="arabicnlp",
version='0.1.6',
description="Python package for arabic NLP",
long_description="Python package for processing arabic language with features like sentiment analysis and part-of-speech tagging",
# The project URL.
url='https://github.com/adhaamehab/arabicnlp',
# Author details
author='Adham Ehab',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(),
install_requires=[
'keras',
'tensorflow'
],
include_package_data=True,
package_data={
'': ['*.h5', '*.bin'],
'data': ['*.h5', '*.bin']
}
)