Skip to content

Commit 6975c27

Browse files
committed
Merge branch 'packaging-and-distribution'
2 parents cdaa3b9 + 27639fa commit 6975c27

File tree

8 files changed

+2327
-2
lines changed

8 files changed

+2327
-2
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ciscosparkapi/_version.py export-subst

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include LICENSE.txt
2+
include README.md
3+
include versioneer.py
4+
include ciscosparkapi/_version.py

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ciscosparkapi
2-
A simple, scalable and lightweight API wrapper for the Cisco Spark services APIs
2+
Simple, lightweight and scalable Python API wrapper for the Cisco Spark APIs
33

44
## Overview
55
A single Pythonic wrapper class representing the Cisco Spark API interfaces and returned JSON objects as method calls that return native Python objects.

ciscosparkapi/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Versioneer version control
2+
from ._version import get_versions
3+
__version__ = get_versions()['version']
4+
del get_versions
5+
16
from exceptions import ciscosparkapiException, SparkApiError
27
from restsession import RestSession
38
from api.accesstokens import AccessToken, AccessTokensAPI
@@ -52,4 +57,3 @@ def base_url(self):
5257
@property
5358
def timeout(self):
5459
return self.session.timeout
55-

0 commit comments

Comments
 (0)