changeset b525dad7d74b in tryton:default
details: https://hg.tryton.org/tryton?cmd=changeset&node=b525dad7d74b
description:
Define packages in setup-freeze
issue11655
review429271003
diffstat:
setup-freeze.py | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diffs (19 lines):
diff -r 3213c545da10 -r b525dad7d74b setup-freeze.py
--- a/setup-freeze.py Mon Aug 08 22:21:49 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,