2020-03-26 23:31:36 +01:00
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="hy_odoo",
|
2021-02-19 08:05:50 +01:00
|
|
|
version="0.6.0",
|
2020-03-26 23:31:36 +01:00
|
|
|
packages=find_packages(),
|
|
|
|
package_data={
|
|
|
|
'hy_odoo': ['*.hy'],
|
|
|
|
},
|
2020-04-27 12:40:37 +02:00
|
|
|
install_requires=["hy==0.17.Y"],
|
2020-03-26 23:31:36 +01:00
|
|
|
author="Fabien Bourgeois",
|
|
|
|
author_email="fabien@yaltik.com",
|
|
|
|
description="HY functions and macros for Odoo",
|
|
|
|
keywords="odoo hy hylang",
|
|
|
|
url="https://git.yaltik.net/Yaltik/hy_odoo",
|
|
|
|
classifiers=[
|
|
|
|
'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',
|
|
|
|
]
|
|
|
|
)
|