-
Notifications
You must be signed in to change notification settings - Fork 119
/
setup.py
44 lines (40 loc) · 1.18 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
38
39
40
41
42
43
44
#!/usr/bin/env python
import summarize
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.md').read()
setup(
name='summarize',
version=summarize.__version__,
description='A Python utility for summarizing articles using nltk.',
long_description=readme,
author='Jonathon Vogel',
author_email='[email protected]',
url='https://github.com/Rotten194/summarize.py',
packages=[
'summarize',
],
package_dir={'summarize': 'summarize'},
include_package_data=True,
install_requires=[
'nltk>=2.0.4',
'requests>=1.2.3',
'beautifulsoup4>=4.3.1',
],
license='BSD',
scripts=['summarize/summarize.py'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3'
],
)