[WIP]Hy Odoo : branch for 0.24.0

This commit is contained in:
Fabien BOURGEOIS 2022-11-01 15:28:40 +01:00
parent f84924ae04
commit a7f8c189fe
1 changed files with 7 additions and 4 deletions

View File

@ -2,12 +2,12 @@ from setuptools import setup, find_packages
setup(
name="hy_odoo",
version="0.7.0pre",
version="0.8.0pre",
packages=find_packages(),
package_data={
'hy_odoo': ['*.hy'],
},
install_requires=["hy==0.17.Y"],
install_requires=["hy==0.24.*"],
author="Fabien Bourgeois",
author_email="fabien@yaltik.com",
description="HY functions and macros for Odoo",
@ -17,8 +17,11 @@ setup(
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MPL2 License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
)