Skip to content

Commit

Permalink
Altering setup.py to correctly find all sub-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
mzkrasner committed Oct 28, 2024
1 parent caf3a80 commit 255c49e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ceramicsdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@

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

0 comments on commit 255c49e

Please sign in to comment.