[Erp5-report] r39632 nicolas - in /erp5/trunk/utils/xml_marshaller: MANIFEST.in setup.py

nobody at svn.erp5.org nobody at svn.erp5.org
Thu Oct 28 18:23:50 CEST 2010


Author: nicolas
Date: Thu Oct 28 18:23:49 2010
New Revision: 39632

URL: http://svn.erp5.org?rev=39632&view=rev
Log:
Modify setup.py according folder structure modifications

Added:
    erp5/trunk/utils/xml_marshaller/MANIFEST.in
Modified:
    erp5/trunk/utils/xml_marshaller/setup.py

Added: erp5/trunk/utils/xml_marshaller/MANIFEST.in
URL: http://svn.erp5.org/erp5/trunk/utils/xml_marshaller/MANIFEST.in?rev=39632&view=auto
==============================================================================
--- erp5/trunk/utils/xml_marshaller/MANIFEST.in (added)
+++ erp5/trunk/utils/xml_marshaller/MANIFEST.in [utf8] Thu Oct 28 18:23:49 2010
@@ -0,0 +1,2 @@
+recursive-include src *.xsd
+

Modified: erp5/trunk/utils/xml_marshaller/setup.py
URL: http://svn.erp5.org/erp5/trunk/utils/xml_marshaller/setup.py?rev=39632&r1=39631&r2=39632&view=diff
==============================================================================
--- erp5/trunk/utils/xml_marshaller/setup.py [utf8] (original)
+++ erp5/trunk/utils/xml_marshaller/setup.py [utf8] Thu Oct 28 18:23:49 2010
@@ -9,7 +9,7 @@ def read(name):
 
 long_description=(
         read('README.txt')
-        + '\n\n' +
+        + '\n' +
         read('CHANGES.txt')
     )
 
@@ -29,11 +29,10 @@ setup(name=name,
       maintainer_email='nicolas at nexedi.com',
       url='http://www.python.org/community/sigs/current/xml-sig/',
       license='Python License (CNRI Python License)',
-      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
       include_package_data=True,
       zip_safe=False,
       install_requires=['lxml',],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
+      test_suite='xml_marshaller',
       )




More information about the Erp5-report mailing list