Skip to content

Commit

Permalink
[ADD] setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
OCA-git-bot committed Jun 6, 2023
1 parent c17588f commit ca521fc
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup/_metapackage/VERSION.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.0.20230606.0
18 changes: 18 additions & 0 deletions setup/_metapackage/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import setuptools

with open('VERSION.txt', 'r') as f:
version = f.read().strip()

setuptools.setup(
name="odoo-addons-oca-search-engine",
description="Meta package for oca-search-engine Odoo addons",
version=version,
install_requires=[
'odoo-addon-connector_search_engine>=16.0dev,<16.1dev',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
'Framework :: Odoo :: 16.0',
]
)

0 comments on commit ca521fc

Please sign in to comment.