changeset bc9c356c9a26 in tryton:5.0
details: https://hg.tryton.org/tryton?cmd=changeset&node=bc9c356c9a26
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 54de5dda2fba -r bc9c356c9a26 setup-freeze.py
--- a/setup-freeze.py Wed Aug 17 23:39:48 2022 +0200
+++ b/setup-freeze.py Fri Aug 26 17:52:31 2022 +0200
@@ -11,6 +11,7 @@
from subprocess import Popen, PIPE, check_call
from cx_Freeze import setup, Executable
+from setuptools import find_packages
home = os.path.expanduser('~/')
pythonrc = os.path.join(home, '.pythonrc.py')
@@ -120,6 +121,7 @@
setup(name='tryton',
version=version,
+ packages=find_packages(),
options={
'build_exe': {
'no_compress': True,