Skip to content

Commit

Permalink
[ADD] setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ssi-bot committed Sep 30, 2023
1 parent 8b92a25 commit ccaa39a
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
2 changes: 2 additions & 0 deletions setup/.setuptools-odoo-make-default-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# addons listed in this file are ignored by
# setuptools-odoo-make-default (one addon per line)
2 changes: 2 additions & 0 deletions setup/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
To learn more about this directory, please visit
https://pypi.python.org/pypi/setuptools-odoo
1 change: 1 addition & 0 deletions setup/_metapackage/VERSION.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
14.0.20230930.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="odoo14-addons-open-synergy-opnsynid-stock-reporting",
description="Meta package for open-synergy-opnsynid-stock-reporting Odoo addons",
version=version,
install_requires=[
'odoo14-addon-stock_card_report_value',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
'Framework :: Odoo :: 14.0',
]
)
6 changes: 6 additions & 0 deletions setup/stock_card_report_value/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)

0 comments on commit ccaa39a

Please sign in to comment.