From e4ad396a4f2da9a964ad7610bb21f320079c6382 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B8=CC=86=20=D0=A8?= =?UTF-8?q?=D0=B5=D0=BB=D1=8C=D1=84?= Date: Tue, 22 Dec 2015 17:44:21 +0300 Subject: [PATCH] Bump version and add necessary packaging info --- README.md | 6 ++++++ setup.cfg | 2 ++ setup.py | 5 ++--- 3 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 setup.cfg diff --git a/README.md b/README.md index 63ccc5d..2c6a8c9 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ summarize.py Simple Python and NLTK-based implementation of text summarization. +Installation +------------ + + $ pip install pysummarize + + Setup ----- diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..b88034e --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py index 3896015..d290a71 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,8 @@ from setuptools import setup, find_packages setup( - name='summarize', - version='0.4.0', + name='pysummarize', + version='0.5.0', description='Simple Python and NLTK-based implementation of text summarization', url='https://github.com/despawnerer/summarize', author='Aleksei Voronov', @@ -12,7 +12,6 @@ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'Operating System :: OS Independent', - 'Topic :: Scientific/Engineering :: Information Analysis', 'Topic :: Text Processing', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 2',