Only name package trytonzz

This commit is contained in:
resteve 2012-11-13 16:05:49 +01:00
parent 3193047602
commit 4059f72ddd
1 changed files with 7 additions and 7 deletions

View File

@ -35,13 +35,13 @@ setup(name='trytonzz_sale_invoice_cancel',
url='http://www.zikzakmedia.com', url='http://www.zikzakmedia.com',
download_url="http://downloads.tryton.org/" + \ download_url="http://downloads.tryton.org/" + \
info.get('version', '0.0.1').rsplit('.', 1)[0] + '/', info.get('version', '0.0.1').rsplit('.', 1)[0] + '/',
package_dir={'trytonzz.modules.sale_invoice_cancel': '.'}, package_dir={'trytond.modules.sale_invoice_cancel': '.'},
packages=[ packages=[
'trytonzz.modules.sale_invoice_cancel', 'trytond.modules.sale_invoice_cancel',
'trytonzz.modules.sale_invoice_cancel.tests', 'trytond.modules.sale_invoice_cancel.tests',
], ],
package_data={ package_data={
'trytonzz.modules.sale_invoice_cancel': info.get('xml', []) \ 'trytond.modules.sale_invoice_cancel': info.get('xml', []) \
+ ['tryton.cfg'], + ['tryton.cfg'],
}, },
classifiers=[ classifiers=[
@ -64,9 +64,9 @@ setup(name='trytonzz_sale_invoice_cancel',
install_requires=requires, install_requires=requires,
zip_safe=False, zip_safe=False,
entry_points=""" entry_points="""
[trytonzz.modules] [trytond.modules]
sale_invoice_cancel = trytonzz.modules.sale_invoice_cancel sale_invoice_cancel = trytond.modules.sale_invoice_cancel
""", """,
test_suite='tests', test_suite='tests',
test_loader='trytonzz.test_loader:Loader', test_loader='trytond.test_loader:Loader',
) )