Added:
trunk/MANIFEST.in
trunk/setup.py
Log:
Add installation support with distutils
Added: trunk/MANIFEST.in
==============================================================================
--- (empty file)
+++ trunk/MANIFEST.in Sun Jun 24 17:43:11 2007
@@ -0,0 +1,7 @@
+include README
+include NEWS
+include AUTHORS
+include ChangeLog
+include setup.py
+recursive-include bbgun *.py
+recursive-include scripts *
Added: trunk/setup.py
==============================================================================
--- (empty file)
+++ trunk/setup.py Sun Jun 24 17:43:11 2007
@@ -0,0 +1,44 @@
+"""bbgun: Move phpBB forums to Wordpress blogs
+
+bbgun moves phpBB forums to WordPress blogs. bbgun pulls a forum entry from
+the phpBB database, translates the text (bbCode to strict XHTML), date, and
+other fields, and pushes the translated entry into the WordPress database.
+
+With bbgun, you can move individual posts, move entire threads, move only
+certain users' posts, map phpBB users to WordPress authors, and specify
+WordPress categories for the new entries.
+"""
+
+classifiers = """\
+Development Status :: 3 - Alpha
+Environment :: Console
+Intended Audience :: Developers
+Intended Audience :: End Users/Desktop
+License :: OSI Approved :: GNU General Public License (GPL)
+Natural Language :: English
+Operating System :: OS Independent
+Programming Language :: Python
+Topic :: Database :: Front-Ends
+Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards
+Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary
+Topic :: Text Processing :: Markup :: HTML
+"""
+
+from distutils.core import setup
+
+doclines = __doc__.split("\n")
+
+setup(name='bbgun',
+ version='0.10',
+ description=doclines[0],
+ long_description = "\n".join(doclines[2:]),
+ author='Joe Friedrichsen',
+ author_email='pengi...@gmail.com',
+ url='http://code.google.com/p/bbgun/',
+ download_url='http://code.google.com/p/bbgun/downloads/list',
+ license='GNU GPL',
+ classifiers=filter(None, classifiers.split("\n")),
+ platforms=['any'],
+ packages=['bbgun'],
+ scripts=['scripts/bbgun']
+ )