forked from recruit-tech/summpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 985 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
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
import codecs
long_description = ''
if os.path.exists('README.rst'):
long_description = codecs.open('README.rst', encoding='utf-8').read()
setup(
name='summpy-fix',
version='1.0.1',
description='originally from Summpy. this is bug fix version of Summpy.',
long_description=long_description,
author='OnetapInc',
author_email='[email protected]',
license='MIT',
url='https://github.com/OnetapInc/summpy-fix',
packages=['summpy', 'summpy.misc'],
package_data={'summpy': ['server_data/*.html']},
install_requires=[
'numpy', 'scipy', 'scikit-learn', 'networkx', 'cherrypy'
],
keywords=[
'automatic summarization',
'natural language processing'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
]
)