changeset f2d46392d9d3 in tryton:6.2
details: https://hg.tryton.org/tryton?cmd=changeset&node=f2d46392d9d3
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 58369a73cccc -r f2d46392d9d3 setup-freeze.py
--- a/setup-freeze.py   Wed Aug 17 23:37:31 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')
@@ -124,6 +125,7 @@
 
 setup(name='tryton',
     version=version,
+    packages=find_packages(),
     options={
         'build_exe': {
             'no_compress': True,

Reply via email to