Fix setup.py

This commit is contained in:
Dani M?ller 2019-02-14 13:05:45 +01:00
parent a2c303f74f
commit 308177dc29
1 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,9 @@ import ConfigParser
MODULE = 'account_invoice_intercompany'
PREFIX = 'nantic'
MODULE2PREFIX = {}
MODULE2PREFIX = {
'company_account_sync': 'nantic',
}
def read(fname):
@ -62,7 +64,7 @@ setup(name='%s_%s' % (PREFIX, MODULE),
],
package_data={
'trytond.modules.%s' % MODULE: (info.get('xml', [])
+ ['tryton.cfg', 'locale/*.po', 'tests/*.rst']),
+ ['tryton.cfg', 'locale/*.po', 'tests/*.rst', 'view/*.xml']),
},
classifiers=[
'Development Status :: 5 - Production/Stable',