Skip to content
This repository was archived by the owner on Dec 30, 2022. It is now read-only.

Commit 1a5217e

Browse files
committed
Define packages in setup-freeze
issue11655 review429271003
1 parent e9f865e commit 1a5217e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

setup-freeze.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from subprocess import PIPE, Popen, check_call
1212

1313
from cx_Freeze import Executable, setup
14+
from setuptools import find_packages
1415

1516
home = os.path.expanduser('~/')
1617
pythonrc = os.path.join(home, '.pythonrc.py')
@@ -124,6 +125,7 @@ def replace_path(match):
124125

125126
setup(name='tryton',
126127
version=version,
128+
packages=find_packages(),
127129
options={
128130
'build_exe': {
129131
'no_compress': True,

0 commit comments

Comments
 (0)