You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
391 B
17 lines
391 B
import setuptools
|
|
|
|
with open('VERSION.txt', 'r') as f:
|
|
version = f.read().strip()
|
|
|
|
setuptools.setup(
|
|
name="odoo11-addons-oca-pos",
|
|
description="Meta package for oca-pos Odoo addons",
|
|
version=version,
|
|
install_requires=[
|
|
'odoo11-addon-pos_session_pay_invoice',
|
|
],
|
|
classifiers=[
|
|
'Programming Language :: Python',
|
|
'Framework :: Odoo',
|
|
]
|
|
)
|