[ADD] setup.py

pull/347/head
Laurent Mignon (ACSONE) 2019-11-19 14:46:44 +01:00
parent f584d505a0
commit 317b4c40bc
7 changed files with 22 additions and 1 deletions

View File

@ -9,4 +9,4 @@ line_length=88
known_odoo=odoo
known_odoo_addons=odoo.addons
sections=FUTURE,STDLIB,THIRDPARTY,ODOO,ODOO_ADDONS,FIRSTPARTY,LOCALFOLDER
known_third_party=PyPDF2,mock,pkg_resources,requests,werkzeug
known_third_party=PyPDF2,mock,pkg_resources,requests,setuptools,werkzeug

View File

@ -0,0 +1,2 @@
# addons listed in this file are ignored by
# setuptools-odoo-make-default (one addon per line)

2
setup/README 100644
View File

@ -0,0 +1,2 @@
To learn more about this directory, please visit
https://pypi.python.org/pypi/setuptools-odoo

View File

@ -0,0 +1 @@
../../../../report_py3o

View File

@ -0,0 +1,9 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
install_requires=[
"genshi>=0.7"
]
)

View File

@ -0,0 +1 @@
../../../../report_py3o_fusion_server

View File

@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)