Skip to content

Commit 90332df

Browse files
committed
[ADD] setup.py
1 parent fe1c68f commit 90332df

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

setup/_metapackage/VERSION.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16.0.20221016.0

setup/_metapackage/setup.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
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-stock-logistics-warehouse",
8+
description="Meta package for oca-stock-logistics-warehouse Odoo addons",
9+
version=version,
10+
install_requires=[
11+
'odoo-addon-stock_mts_mto_rule>=16.0dev,<16.1dev',
12+
],
13+
classifiers=[
14+
'Programming Language :: Python',
15+
'Framework :: Odoo',
16+
'Framework :: Odoo :: 16.0',
17+
]
18+
)

0 commit comments

Comments
 (0)