mirror of
https://github.com/camptocamp/odoo-cloud-platform.git
synced 2026-06-24 16:48:36 +00:00
The name of the libs and python packages are different, Odoo expects the inner python package in the manifest, but setuptools cannot find the libs in pypi, overrides them with the libs names.
23 lines
665 B
Python
23 lines
665 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2017 Camptocamp SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
|
|
|
|
|
{'name': 'Attachments on Swift storage',
|
|
'summary': 'Store assets and attachments on a Swift compatible object store',
|
|
'version': '11.0.1.0.0',
|
|
'author': 'Camptocamp,Odoo Community Association (OCA)',
|
|
'license': 'AGPL-3',
|
|
'category': 'Knowledge Management',
|
|
'depends': ['base_attachment_object_storage'],
|
|
'external_dependencies': {
|
|
'python': ['swiftclient',
|
|
'keystoneclient',
|
|
'keystoneauth1',
|
|
],
|
|
},
|
|
'website': 'https://www.camptocamp.com',
|
|
'data': [],
|
|
'installable': True,
|
|
}
|