Skip to content

Commit

Permalink
Merge pull request #792 from appwrite/fix-python-modules
Browse files Browse the repository at this point in the history
Fix setup packages
  • Loading branch information
abnegate authored Mar 9, 2024
2 parents 9583524 + 6340f3c commit 355168d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion templates/python/setup.py.twig
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ with open("README.md", "r", encoding="utf-8") as readme_file_desc:

setuptools.setup(
name = '{{spec.title | caseSnake}}',
packages = ['{{spec.title | caseSnake}}', '{{spec.title | caseSnake}}/services'],
packages = [
'{{spec.title | caseSnake}}',
'{{spec.title | caseSnake}}/services',
'{{spec.title | caseSnake}}/encoders',
'{{spec.title | caseSnake}}/enums',
],
version = '{{sdk.version}}',
license='{{spec.licenseName}}',
description = '{{sdk.shortDescription}}',
Expand Down

0 comments on commit 355168d

Please sign in to comment.