Reviewers: ,


Please review this at http://codereview.tryton.org/537003/

Affected files:
  M trytond/modules/account_invoice/MANIFEST.in
  M trytond/modules/account_invoice/setup.py
  M trytond/modules/account_statement/MANIFEST.in
  M trytond/modules/account_statement/setup.py
  M trytond/modules/account_stock_anglo_saxon/MANIFEST.in
  M trytond/modules/account_stock_anglo_saxon/setup.py
  M trytond/modules/account_stock_continental/setup.py
  M trytond/modules/carrier_percentage/MANIFEST.in
  M trytond/modules/carrier_percentage/setup.py
  M trytond/modules/carrier_weight/MANIFEST.in
  M trytond/modules/carrier_weight/setup.py
  M trytond/modules/production/MANIFEST.in
  M trytond/modules/production/setup.py
  M trytond/modules/purchase_shipment_cost/MANIFEST.in
  M trytond/modules/purchase_shipment_cost/setup.py
  M trytond/modules/sale/MANIFEST.in
  M trytond/modules/sale/setup.py
  M trytond/modules/sale_shipment_cost/MANIFEST.in
  M trytond/modules/sale_shipment_cost/setup.py
  M trytond/modules/stock/MANIFEST.in
  M trytond/modules/stock/setup.py
  M trytond/modules/stock_lot/MANIFEST.in
  M trytond/modules/stock_lot/setup.py


Index: trytond/modules/account_invoice/MANIFEST.in
===================================================================

--- a/trytond/modules/account_invoice/MANIFEST.in
+++ b/trytond/modules/account_invoice/MANIFEST.in
@@ -8,3 +8,4 @@
 include *.xml
 include *.odt
 include locale/*.po
+include tests/*.rst

Index: trytond/modules/account_invoice/setup.py
===================================================================

--- a/trytond/modules/account_invoice/setup.py
+++ b/trytond/modules/account_invoice/setup.py
@@ -45,7 +45,7 @@
         ],
     package_data={
         'trytond.modules.account_invoice': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po', 'invoice.odt'],
+            + ['tryton.cfg', 'locale/*.po', 'invoice.odt', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/account_statement/MANIFEST.in
===================================================================

--- a/trytond/modules/account_statement/MANIFEST.in
+++ b/trytond/modules/account_statement/MANIFEST.in
@@ -8,3 +8,4 @@
 include *.xml
 include *.odt
 include locale/*.po
+include tests/*.rst

Index: trytond/modules/account_statement/setup.py
===================================================================

--- a/trytond/modules/account_statement/setup.py
+++ b/trytond/modules/account_statement/setup.py
@@ -48,7 +48,7 @@
         ],
     package_data={
         'trytond.modules.account_statement': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po'],
+            + ['tryton.cfg', 'locale/*.po', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/account_stock_anglo_saxon/MANIFEST.in
===================================================================

--- a/trytond/modules/account_stock_anglo_saxon/MANIFEST.in
+++ b/trytond/modules/account_stock_anglo_saxon/MANIFEST.in
@@ -9,3 +9,4 @@
 include *.odt
 include locale/*.po
 include doc/*
+include tests/*.rst

Index: trytond/modules/account_stock_anglo_saxon/setup.py
===================================================================

--- a/trytond/modules/account_stock_anglo_saxon/setup.py
+++ b/trytond/modules/account_stock_anglo_saxon/setup.py
@@ -48,7 +48,7 @@
         ],
     package_data={
         'trytond.modules.account_stock_anglo_saxon': info.get('xml', []) \
-                + ['tryton.cfg', 'locale/*.po'],
+                + ['tryton.cfg', 'locale/*.po', 'tests/*.rst'],
     },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/account_stock_continental/setup.py
===================================================================

--- a/trytond/modules/account_stock_continental/setup.py
+++ b/trytond/modules/account_stock_continental/setup.py
@@ -52,7 +52,7 @@
         ],
     package_data={
         'trytond.modules.account_stock_continental': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po'],
+            + ['tryton.cfg', 'locale/*.po', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/carrier_percentage/MANIFEST.in
===================================================================

--- a/trytond/modules/carrier_percentage/MANIFEST.in
+++ b/trytond/modules/carrier_percentage/MANIFEST.in
@@ -8,3 +8,4 @@
 include *.odt
 include locale/*.po
 include doc/*
+include tests/*.rst

Index: trytond/modules/carrier_percentage/setup.py
===================================================================

--- a/trytond/modules/carrier_percentage/setup.py
+++ b/trytond/modules/carrier_percentage/setup.py
@@ -45,7 +45,7 @@
         ],
     package_data={
         'trytond.modules.carrier_percentage': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po'],
+            + ['tryton.cfg', 'locale/*.po', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/carrier_weight/MANIFEST.in
===================================================================

--- a/trytond/modules/carrier_weight/MANIFEST.in
+++ b/trytond/modules/carrier_weight/MANIFEST.in
@@ -8,3 +8,4 @@
 include *.odt
 include locale/*.po
 include doc/*
+include tests/*.rst

Index: trytond/modules/carrier_weight/setup.py
===================================================================

--- a/trytond/modules/carrier_weight/setup.py
+++ b/trytond/modules/carrier_weight/setup.py
@@ -45,7 +45,7 @@
         ],
     package_data={
         'trytond.modules.carrier_weight': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po'],
+            + ['tryton.cfg', 'locale/*.po', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/production/MANIFEST.in
===================================================================

--- a/trytond/modules/production/MANIFEST.in
+++ b/trytond/modules/production/MANIFEST.in
@@ -10,3 +10,4 @@
 include locale/*.po
 include doc/*
 include icons/*
+include tests/*.rst

Index: trytond/modules/production/setup.py
===================================================================

--- a/trytond/modules/production/setup.py
+++ b/trytond/modules/production/setup.py
@@ -45,7 +45,7 @@
         ],
     package_data={
         'trytond.modules.production': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po'],
+            + ['tryton.cfg', 'locale/*.po', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/purchase_shipment_cost/MANIFEST.in
===================================================================

--- a/trytond/modules/purchase_shipment_cost/MANIFEST.in
+++ b/trytond/modules/purchase_shipment_cost/MANIFEST.in
@@ -9,3 +9,4 @@
 include *.odt
 include locale/*.po
 include doc/*
+include tests/*.rst

Index: trytond/modules/purchase_shipment_cost/setup.py
===================================================================

--- a/trytond/modules/purchase_shipment_cost/setup.py
+++ b/trytond/modules/purchase_shipment_cost/setup.py
@@ -55,7 +55,7 @@
         ],
     package_data={
         'trytond.modules.purchase_shipment_cost': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po'],
+            + ['tryton.cfg', 'locale/*.po', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/sale/MANIFEST.in
===================================================================

--- a/trytond/modules/sale/MANIFEST.in
+++ b/trytond/modules/sale/MANIFEST.in
@@ -9,3 +9,4 @@
 include *.odt
 include locale/*.po
 include doc/*
+include tests/*.rst

Index: trytond/modules/sale/setup.py
===================================================================

--- a/trytond/modules/sale/setup.py
+++ b/trytond/modules/sale/setup.py
@@ -48,7 +48,7 @@
         ],
     package_data={
         'trytond.modules.sale': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po', 'sale.odt'],
+            + ['tryton.cfg', 'locale/*.po', 'sale.odt', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/sale_shipment_cost/MANIFEST.in
===================================================================

--- a/trytond/modules/sale_shipment_cost/MANIFEST.in
+++ b/trytond/modules/sale_shipment_cost/MANIFEST.in
@@ -9,3 +9,4 @@
 include *.odt
 include locale/*.po
 include doc/*
+include tests/*.rst

Index: trytond/modules/sale_shipment_cost/setup.py
===================================================================

--- a/trytond/modules/sale_shipment_cost/setup.py
+++ b/trytond/modules/sale_shipment_cost/setup.py
@@ -52,7 +52,7 @@
         ],
     package_data={
         'trytond.modules.sale_shipment_cost': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po'],
+            + ['tryton.cfg', 'locale/*.po', 'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/stock/MANIFEST.in
===================================================================

--- a/trytond/modules/stock/MANIFEST.in
+++ b/trytond/modules/stock/MANIFEST.in
@@ -10,3 +10,4 @@
 include locale/*.po
 include doc/*
 include icons/*
+include tests/*.rst

Index: trytond/modules/stock/setup.py
===================================================================

--- a/trytond/modules/stock/setup.py
+++ b/trytond/modules/stock/setup.py
@@ -47,7 +47,8 @@
         ],
     package_data={
         'trytond.modules.stock': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po', '*.odt', 'icons/*.svg'],
+            + ['tryton.cfg', 'locale/*.po', '*.odt', 'icons/*.svg',
+               'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',

Index: trytond/modules/stock_lot/MANIFEST.in
===================================================================

--- a/trytond/modules/stock_lot/MANIFEST.in
+++ b/trytond/modules/stock_lot/MANIFEST.in
@@ -10,3 +10,4 @@
 include locale/*.po
 include doc/*
 include icons/*
+include tests/*.rst

Index: trytond/modules/stock_lot/setup.py
===================================================================

--- a/trytond/modules/stock_lot/setup.py
+++ b/trytond/modules/stock_lot/setup.py
@@ -47,7 +47,8 @@
         ],
     package_data={
         'trytond.modules.stock_lot': info.get('xml', []) \
-            + ['tryton.cfg', 'locale/*.po', '*.odt', 'icons/*.svg'],
+            + ['tryton.cfg', 'locale/*.po', '*.odt', 'icons/*.svg',
+               'tests/*.rst'],
         },
     classifiers=[
         'Development Status :: 5 - Production/Stable',



--
[email protected] mailing list

Reply via email to