mirror of
https://github.com/sprockets/sprockets.clients.cassandra.git
synced 2025-02-27 03:55:07 +00:00
Get the default unit tests working. Fix the package directory structure and add the version field into the package init file.
9 lines
186 B
Python
9 lines
186 B
Python
"""
|
|
clients.cassandra
|
|
=================
|
|
|
|
Base functionality for accessing/modifying data in Cassandra.
|
|
|
|
"""
|
|
version_info = (0, 0, 0)
|
|
__version__ = '.'.join(str(v) for v in version_info)
|