mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
[ADD] setup.py
This commit is contained in:
1
setup/_metapackage/VERSION.txt
Normal file
1
setup/_metapackage/VERSION.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
12.0.20181109.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="odoo12-addons-oca-account-financial-tools",
|
||||||
|
description="Meta package for oca-account-financial-tools Odoo addons",
|
||||||
|
version=version,
|
||||||
|
install_requires=[
|
||||||
|
'odoo12-addon-account_fiscal_year',
|
||||||
|
],
|
||||||
|
classifiers=[
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Framework :: Odoo',
|
||||||
|
]
|
||||||
|
)
|
||||||
1
setup/account_fiscal_year/odoo/addons/account_fiscal_year
Symbolic link
1
setup/account_fiscal_year/odoo/addons/account_fiscal_year
Symbolic link
@@ -0,0 +1 @@
|
|||||||
|
../../../../account_fiscal_year
|
||||||
6
setup/account_fiscal_year/setup.py
Normal file
6
setup/account_fiscal_year/setup.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import setuptools
|
||||||
|
|
||||||
|
setuptools.setup(
|
||||||
|
setup_requires=['setuptools-odoo'],
|
||||||
|
odoo_addon=True,
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user