25 lines
717 B
Python
25 lines
717 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="hy_odoo",
|
|
version="0.7.0pre",
|
|
packages=find_packages(),
|
|
package_data={
|
|
'hy_odoo': ['*.hy'],
|
|
},
|
|
install_requires=["hy"],
|
|
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',
|
|
]
|
|
)
|