forked from oduwsdl/sumgram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 911 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from sumgram import __version__
desc = """sumgram is a tool that summarizes a collection of text documents by generating the most frequent sumgrams (conjoined ngrams)"""
setup(
name='sumgram',
version=__version__,
description=desc,
long_description='See: https://github.com/oduwsdl/sumgram/',
author='Alexander C. Nwala',
author_email='[email protected]',
url='https://github.com/oduwsdl/sumgram/',
packages=find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
install_requires=[
'numpy',
'requests',
'scikit-learn',
'NwalaTextUtils==0.0.5'
],
entry_points={'console_scripts': ['sumgram = sumgram.sumgram:main']}
)