Skip to content

Commit

Permalink
Fix missing packages in setup (Stability-AI#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
palp committed Nov 15, 2022
1 parent fdf488c commit 67b5cf2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# fmt: off

from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages

with open('README.md','r') as f:
README = f.read()

setup(
name='stability-sdk',
version='0.2.8',
version='0.2.9',
author='Wes Brown',
author_email='[email protected]',
maintainer='David Marx',
Expand All @@ -31,7 +31,7 @@
'pytest',
'grpcio-testing'
]},
packages=find_packages(
packages=find_namespace_packages(
where='src',
include=['stability_sdk*'],
),
Expand Down

0 comments on commit 67b5cf2

Please sign in to comment.