Skip to content

Commit be04808

Browse files
authored
setup.py: Add "package" directory to the package list (#50)
ImportLib was unable to find the package module when Rift was installed with setupy.py because it was no declared in the package list and thus, not included in the resulting egg archive.
1 parent 324c58a commit be04808

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
author='Aurelien Cedeyn',
4242
author_email='aurelien.cedeyn@cea.fr',
4343
package_dir={'': 'lib'},
44-
packages=['rift'],
44+
packages=['rift', 'rift.package'],
4545
install_requires=['boto3>=1.18.65', 'xmltodict'],
4646
py_modules = ['unidiff'],
4747
data_files = [

0 commit comments

Comments
 (0)