diff --git a/.bumpversion.cfg b/.bumpversion.cfg deleted file mode 100644 index c963d8e..0000000 --- a/.bumpversion.cfg +++ /dev/null @@ -1,7 +0,0 @@ -[bumpversion] -current_version = 0.1.1 -files = setup.py pykismet3.py -commit = True -tag = True -message = Release version {new_version}. - diff --git a/MANIFEST.in b/MANIFEST.in index 8bd3bb6..93e740e 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1 +1,2 @@ -include *.md LICENSE +include *.rst LICENSE +include requirements.txt diff --git a/README.rst b/README.rst index f845f6c..6a51998 100644 --- a/README.rst +++ b/README.rst @@ -88,7 +88,8 @@ Submit Ham akismet.submit_ham('192.168.1.12', 'FIREFOX / COMMENT USER AGENT', comment_author='Tim', comment_author_email='tim@witch.co.uk', comment_author_url='http://witch.co.uk', - comment_content="Look, that rabbit's got a vicious streak a mile wide! It's a killer!") + comment_content="Look, that rabbit's got a vicious streak a mile wide!" + "It's a killer!") Submit Spam ----------- diff --git a/akismet/__init__.py b/akismet/__init__.py index 8bdef44..03b44e1 100644 --- a/akismet/__init__.py +++ b/akismet/__init__.py @@ -2,7 +2,7 @@ import requests from akismet.exceptions import AkismetServerError, MissingParameterError -__version__ = '0.2.1' +__version__ = '0.2.2' PYTHON_AKISMET_USER_AGENT = "Python-Akismet/{0}".format(__version__) diff --git a/setup.py b/setup.py index 8185f0c..2cb928e 100644 --- a/setup.py +++ b/setup.py @@ -279,6 +279,7 @@ def frange(x, y, jump): 'Development Status :: {0} - {1}'.format(STATUS_LEVEL, status_name), ]) +print(install_requires) setup( name=PACKAGE_NAME, version=package_version,