mirror of
https://gitlab.com/flectra-community/l10n-switzerland-flectra.git
synced 2024-11-16 19:12:04 +00:00
18 lines
411 B
Python
18 lines
411 B
Python
|
import setuptools
|
||
|
|
||
|
with open('VERSION.txt', 'r') as f:
|
||
|
version = f.read().strip()
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="odoo14-addons-oca-l10n-switzerland",
|
||
|
description="Meta package for oca-l10n-switzerland Odoo addons",
|
||
|
version=version,
|
||
|
install_requires=[
|
||
|
'odoo14-addon-l10n_ch_base_bank',
|
||
|
],
|
||
|
classifiers=[
|
||
|
'Programming Language :: Python',
|
||
|
'Framework :: Odoo',
|
||
|
]
|
||
|
)
|