Skip to content

Commit

Permalink
Fix sdk to include package data (#115)
Browse files Browse the repository at this point in the history
Erlend Vollset authored Sep 18, 2018

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 350ac3b commit 024b3f4
Showing 3 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
recursive-include cognite *.py
5 changes: 2 additions & 3 deletions cognite/__init__.py
Original file line number Diff line number Diff line change
@@ -19,6 +19,5 @@

from cognite.data_transfer_service import DataTransferService

__all__ = ["v04", "v05", "v06", "preprocessing",
"config", "data_transfer_service"]
__version__ = "0.10.1"
__all__ = ["v04", "v05", "v06", "preprocessing", "config", "data_transfer_service"]
__version__ = "0.10.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@
author_email="[email protected]",
packages=packages,
install_requires=["requests", "pandas", "protobuf", "cognite-logger>=0.3", "tabulate"],
python_requires='>=3.3',
python_requires=">=3.3",
zip_safe=False,
include_package_data=True,
)

0 comments on commit 024b3f4

Please sign in to comment.