Skip to content

Commit 255c49e

Browse files
committed
Altering setup.py to correctly find all sub-packages
1 parent caf3a80 commit 255c49e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ceramicsdk/setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@
55

66
setup(
77
name="ceramicsdk",
8-
version="0.1.0",
8+
version="0.1.1",
99
author='Ceramic Ecosystem Developers',
1010
description="This Ceramic client implements the payload building, encoding, and signing needed to interact with the Ceramic Network. It currently supports ModelInstanceDocument and OrbisDB.",
1111
long_description=long_description,
1212
long_description_content_type="text/markdown",
1313
url="https://github.com/ceramicstudio/orbis-python-starter/tree/main/py_lib",
14-
packages=find_packages(include=['ceramicsdk', 'ceramicsdk.*']),
14+
packages=find_packages(where='.', exclude=['examples*', 'tests*']),
15+
package_data={'': ['*.md']},
1516
classifiers=[
1617
"Development Status :: 3 - Alpha",
1718
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)