From 6014af316a60c20bef53d266e2ec7b86b6e40355 Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Mon, 26 Sep 2011 12:17:01 +0000 Subject: [PATCH] fix wrong doc filenames --- CHANGES.txt | 2 ++ INSTALL.rst => INSTALL.txt | 0 LICENSE => License.txt | 0 MANIFEST.in | 2 ++ README.rst => README.txt | 0 deefuzzer/__init__.py | 2 +- example/deefuzzer.xml | 4 ---- setup.py | 7 ++----- 8 files changed, 7 insertions(+), 10 deletions(-) create mode 100644 CHANGES.txt rename INSTALL.rst => INSTALL.txt (100%) rename LICENSE => License.txt (100%) create mode 100644 MANIFEST.in rename README.rst => README.txt (100%) diff --git a/CHANGES.txt b/CHANGES.txt new file mode 100644 index 0000000..8e13601 --- /dev/null +++ b/CHANGES.txt @@ -0,0 +1,2 @@ +v0.5.7, 09/26/2011 -- Initial changelog + diff --git a/INSTALL.rst b/INSTALL.txt similarity index 100% rename from INSTALL.rst rename to INSTALL.txt diff --git a/LICENSE b/License.txt similarity index 100% rename from LICENSE rename to License.txt diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2985d18 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include *.txt +recursive-include docs *.txt diff --git a/README.rst b/README.txt similarity index 100% rename from README.rst rename to README.txt diff --git a/deefuzzer/__init__.py b/deefuzzer/__init__.py index 3ea2db1..6f7f4a8 100644 --- a/deefuzzer/__init__.py +++ b/deefuzzer/__init__.py @@ -1,4 +1,4 @@ from core import * from tools import * -__version__ = '0.5.7' +__version__ = '0.5.8' diff --git a/example/deefuzzer.xml b/example/deefuzzer.xml index 80d62af..4fb995c 100644 --- a/example/deefuzzer.xml +++ b/example/deefuzzer.xml @@ -34,10 +34,6 @@ your access token key your access token secret key bla bla - - hello world ! - 30 - 0 diff --git a/setup.py b/setup.py index 649ac5f..1e65918 100644 --- a/setup.py +++ b/setup.py @@ -8,9 +8,6 @@ from distutils.core import setup from deefuzzer import __version__ __author__ = 'yomguy@parisson.com' - -with open('README.rst') as file: - long_description = file.read() # The base package metadata to be used by both distutils and setuptools METADATA = dict( @@ -20,7 +17,7 @@ METADATA = dict( description='an easy and instant media streaming tool', author='Guillaume Pellerin', author_email='yomguy@parisson.com', - license='Gnu Public License V2', + license='License.txt', url='http://svn.parisson.org/deefuzzer', keywords='audio video streaming broadcast shout', install_requires = ['setuptools', 'tinyurl', 'python-shout', 'python-twitter'], @@ -28,7 +25,7 @@ METADATA = dict( include_package_data = True, scripts=['scripts/deefuzzer'], classifiers = ['Programming Language :: Python', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', 'Topic :: Multimedia :: Sound/Audio', 'Topic :: Multimedia :: Sound/Audio :: Players',], - long_description=long_description, + long_description=open('README.txt').read(), ) def Main(): -- 2.39.5