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 Oct 14, 2019
1 parent 166be09 commit c92d222
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 0 deletions.
1 change: 1 addition & 0 deletions setup/_metapackage/VERSION.txt
@@ -0,0 +1 @@
12.0.20191014.0
18 changes: 18 additions & 0 deletions setup/_metapackage/setup.py
@@ -0,0 +1,18 @@
import setuptools

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

setuptools.setup(
name="odoo12-addons-oca-account-fiscal-rule",
description="Meta package for oca-account-fiscal-rule Odoo addons",
version=version,
install_requires=[
'odoo12-addon-account_product_fiscal_classification',
'odoo12-addon-account_product_fiscal_classification_test',
],
classifiers=[
'Programming Language :: Python',
'Framework :: Odoo',
]
)
6 changes: 6 additions & 0 deletions setup/account_product_fiscal_classification/setup.py
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
6 changes: 6 additions & 0 deletions setup/account_product_fiscal_classification_test/setup.py
@@ -0,0 +1,6 @@
import setuptools

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

0 comments on commit c92d222

Please sign in to comment.