changeset 035194f1b187 in tryton:6.4
details: https://hg.tryton.org/tryton?cmd=changeset&node=035194f1b187
description:
Define packages in setup-freeze
issue11655
review429271003
(grafted from b525dad7d74b0794fa078576fb8732e2f0599440)
diffstat:
setup-freeze.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diffs (19 lines):
diff -r a4dc46f11861 -r 035194f1b187 setup-freeze.py
--- a/setup-freeze.py Wed Aug 17 23:35:24 2022 +0200
+++ b/setup-freeze.py Fri Aug 26 17:52:31 2022 +0200
@@ -11,6 +11,7 @@
from subprocess import PIPE, Popen, check_call
from cx_Freeze import Executable, setup
+from setuptools import find_packages
home = os.path.expanduser('~/')
pythonrc = os.path.join(home, '.pythonrc.py')
@@ -124,6 +125,7 @@
setup(name='tryton',
version=version,
+ packages=find_packages(),
options={
'build_exe': {
'no_compress': True,