hy_odoo/setup.py

25 lines
725 B
Python
Raw Normal View History

2020-03-26 23:31:36 +01:00
from setuptools import setup, find_packages
setup(
name="hy_odoo",
2021-02-22 12:55:03 +01:00
version="0.7.0pre",
2020-03-26 23:31:36 +01:00
packages=find_packages(),
package_data={
'hy_odoo': ['*.hy'],
},
2021-02-22 14:58:16 +01: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',
]
)