mirror of
https://github.com/OCA/account-reconcile.git
synced 2025-01-20 12:27:39 +02:00
[ADD] setup.py
This commit is contained in:
2
setup/.setuptools-odoo-make-default-ignore
Normal file
2
setup/.setuptools-odoo-make-default-ignore
Normal file
@@ -0,0 +1,2 @@
|
||||
# addons listed in this file are ignored by
|
||||
# setuptools-odoo-make-default (one addon per line)
|
||||
2
setup/README
Normal file
2
setup/README
Normal file
@@ -0,0 +1,2 @@
|
||||
To learn more about this directory, please visit
|
||||
https://pypi.python.org/pypi/setuptools-odoo
|
||||
1
setup/_metapackage/VERSION.txt
Normal file
1
setup/_metapackage/VERSION.txt
Normal file
@@ -0,0 +1 @@
|
||||
13.0.20191227.0
|
||||
17
setup/_metapackage/setup.py
Normal file
17
setup/_metapackage/setup.py
Normal file
@@ -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',
|
||||
]
|
||||
)
|
||||
@@ -0,0 +1 @@
|
||||
../../../../account_reconcile_restrict_partner_mismatch
|
||||
@@ -0,0 +1,6 @@
|
||||
import setuptools
|
||||
|
||||
setuptools.setup(
|
||||
setup_requires=['setuptools-odoo'],
|
||||
odoo_addon=True,
|
||||
)
|
||||
Reference in New Issue
Block a user