We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec607b4 commit 42cbe9bCopy full SHA for 42cbe9b
setup/_metapackage/VERSION.txt
@@ -0,0 +1 @@
1
+16.0.20230818.0
setup/_metapackage/setup.py
@@ -0,0 +1,18 @@
+import setuptools
2
+
3
+with open('VERSION.txt', 'r') as f:
4
+ version = f.read().strip()
5
6
+setuptools.setup(
7
+ name="odoo-addons-oca-odoo-pim",
8
+ description="Meta package for oca-odoo-pim Odoo addons",
9
+ version=version,
10
+ install_requires=[
11
+ 'odoo-addon-attribute_set>=16.0dev,<16.1dev',
12
+ ],
13
+ classifiers=[
14
+ 'Programming Language :: Python',
15
+ 'Framework :: Odoo',
16
+ 'Framework :: Odoo :: 16.0',
17
+ ]
18
+)
0 commit comments