__manifest__.py 695 B

12345678910111213141516171819202122232425
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. # Copyright (C) 2018-now jeffery9@gmail.com
  4. {
  5. 'name': 'China - City Data',
  6. 'version': '1.8',
  7. 'icon': '/l10n_cn/static/description/icon.png',
  8. 'category': 'Accounting/Localizations',
  9. 'author': 'Jeffery Chen Fan<jeffery9@gmail.com>',
  10. 'description': """
  11. Includes the following data for the Chinese localization
  12. ========================================================
  13. City Data/城市数据
  14. """,
  15. 'depends': ['l10n_cn', 'base_address_extended'],
  16. 'data': [
  17. 'data/res_city_data.xml',
  18. 'data/res_country_data.xml',
  19. ],
  20. 'license': 'LGPL-3',
  21. }