You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/05/06 19:00:58 UTC

svn commit: r941802 - in /incubator/libcloud/trunk: MANIFEST.in setup.py

Author: pquerna
Date: Thu May  6 17:00:57 2010
New Revision: 941802

URL: http://svn.apache.org/viewvc?rev=941802&view=rev
Log:
try to make libcloud more setuptools friendly

Modified:
    incubator/libcloud/trunk/MANIFEST.in
    incubator/libcloud/trunk/setup.py

Modified: incubator/libcloud/trunk/MANIFEST.in
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/MANIFEST.in?rev=941802&r1=941801&r2=941802&view=diff
==============================================================================
--- incubator/libcloud/trunk/MANIFEST.in (original)
+++ incubator/libcloud/trunk/MANIFEST.in Thu May  6 17:00:57 2010
@@ -2,3 +2,8 @@ include LICENSE
 include NOTICE
 include example.py
 include CONTRIBUTORS
+include CHANGES
+prune test/secrets.py
+include test/*.py
+include test/secrets.py-dist
+include test/fixtures/*/*
\ No newline at end of file

Modified: incubator/libcloud/trunk/setup.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/setup.py?rev=941802&r1=941801&r2=941802&view=diff
==============================================================================
--- incubator/libcloud/trunk/setup.py (original)
+++ incubator/libcloud/trunk/setup.py Thu May  6 17:00:57 2010
@@ -14,7 +14,7 @@
 # limitations under the License.
 import os
 import sys
-from distutils.core import setup
+from setuptools import setup
 from distutils.core import Command
 from unittest import TextTestRunner, TestLoader
 from glob import glob
@@ -82,6 +82,7 @@ setup(
         'libcloud': 'libcloud',
         'libcloud.drivers': 'libcloud/drivers'
     },
+    include_package_data = True,
     license='Apache License (2.0)',
     url='http://incubator.apache.org/libcloud/',
     cmdclass={