mirror of
https://github.com/NaN-tic/trytond-country_zip.git
synced 2023-12-14 07:42:54 +01:00
Setup. Rename package to trytonzz
This commit is contained in:
parent
577c1013d4
commit
b4d3d5a58b
1 changed files with 9 additions and 9 deletions
18
setup.py
18
setup.py
|
@ -27,20 +27,20 @@ for dep in info.get('depends', []):
|
|||
requires.append('trytond >= %s.%s, < %s.%s' %
|
||||
(major_version, minor_version, major_version, minor_version + 1))
|
||||
|
||||
setup(name='trytond_country_zip',
|
||||
setup(name='trytonzz_country_zip',
|
||||
version=info.get('version', '0.0.1'),
|
||||
description='Country, Subdivision and City from Zip',
|
||||
author='Zikzakmedia SL',
|
||||
author_email='zikzak@zikzakmedia.com',
|
||||
url='http://www.zikzakmedia.com/',
|
||||
download_url="https://bitbucket.org/zikzakmedia/trytond-country_zip",
|
||||
package_dir={'trytond.modules.country_zip': '.'},
|
||||
download_url="https://bitbucket.org/zikzakmedia/trytonzz-country_zip",
|
||||
package_dir={'trytonzz.modules.country_zip': '.'},
|
||||
packages=[
|
||||
'trytond.modules.country_zip',
|
||||
'trytond.modules.country_zip.tests',
|
||||
'trytonzz.modules.country_zip',
|
||||
'trytonzz.modules.country_zip.tests',
|
||||
],
|
||||
package_data={
|
||||
'trytond.modules.country_zip': info.get('xml', []) \
|
||||
'trytonzz.modules.country_zip': info.get('xml', []) \
|
||||
+ ['tryton.cfg', 'locale/*.po'],
|
||||
},
|
||||
classifiers=[
|
||||
|
@ -69,9 +69,9 @@ setup(name='trytond_country_zip',
|
|||
install_requires=requires,
|
||||
zip_safe=False,
|
||||
entry_points="""
|
||||
[trytond.modules]
|
||||
country_zip = trytond.modules.country_zip
|
||||
[trytonzz.modules]
|
||||
country_zip = trytonzz.modules.country_zip
|
||||
""",
|
||||
test_suite='tests',
|
||||
test_loader='trytond.test_loader:Loader',
|
||||
test_loader='trytonzz.test_loader:Loader',
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue