mirror of
https://github.com/camptocamp/odoo-cloud-platform.git
synced 2026-06-24 02:08: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.
22 lines
646 B
Python
22 lines
646 B
Python
# Copyright 2017-2018 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': '12.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,
|
|
}
|