gregorrothfuss / feedvalidator

Automatically exported from code.google.com/p/feedvalidator
0 stars 0 forks source link

Setup doesn't install formatter or i18n packages #6

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
setup.py does not name the formatter or i18n packages. The tests still pass
since these modules exist in the src tree relative to the test files but
any attempt to run, say, demo.py outside the src tree will fail.

This should fix it...

Index: setup.py
===================================================================
--- setup.py    (revision 1059)
+++ setup.py    (working copy)
@@ -18,7 +18,7 @@
       author='Sam Ruby',
       url='http://feedvalidator.org/',
       license='MIT',
-      packages=['feedvalidator'],
+      packages=['feedvalidator', 'feedvalidator.i18n',
'feedvalidator.formatter'],
       include_package_data=True,
       zip_safe=False,
       install_requires=[ 

using r1059

Original issue reported on code.google.com by perry...@gmail.com on 19 Nov 2009 at 6:59

GoogleCodeExporter commented 9 years ago

Original comment by joe.walt...@gmail.com on 10 Mar 2010 at 3:43