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 Dec 27, 2019
1 parent 5a9ecc9 commit 8d01cfb
Show file tree
Hide file tree
Showing 6 changed files with 29 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 @@
13.0.20191227.0
17 changes: 17 additions & 0 deletions setup/_metapackage/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import setuptools

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

setuptools.setup(
name="odoo13-addons-oca-account-reconcile",
description="Meta package for oca-account-reconcile Odoo addons",
version=version,
install_requires=[
'odoo13-addon-account_reconcile_restrict_partner_mismatch',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
]
)
6 changes: 6 additions & 0 deletions setup/account_reconcile_restrict_partner_mismatch/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 8d01cfb

Please sign in to comment.