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