mirror of https://github.com/OCA/social.git
33 lines
921 B
Python
33 lines
921 B
Python
# Copyright 2025 Binhex <https://www.binhex.cloud>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
"name": "Connector Social X",
|
|
"summary": """Integration of the X social network.""",
|
|
"version": "17.0.1.0.0",
|
|
"license": "AGPL-3",
|
|
"author": "Binhex <https://www.binhex.cloud>,Odoo Community Association (OCA)",
|
|
"website": "https://github.com/OCA/social",
|
|
"depends": [
|
|
"base",
|
|
"connector_social_base",
|
|
],
|
|
"data": [
|
|
"data/social_network_media_data.xml",
|
|
"views/res_config_settings_views.xml",
|
|
],
|
|
"assets": {
|
|
"web.assets_backend": [
|
|
# COMPONENTS
|
|
"connector_social_x/static/src/components/**/*.js",
|
|
# SERVICES
|
|
"connector_social_x/static/src/js/services/**/*.js",
|
|
],
|
|
},
|
|
"external_dependencies": {
|
|
"python": [
|
|
"tweepy",
|
|
],
|
|
},
|
|
}
|