Skip to content

Commit

Permalink
Update Copyright to Cisco Systems, Inc.
Browse files Browse the repository at this point in the history
Updating package and file copyright references to specify ‘Cisco
Systems, Inc.’ as per recommendations from Cisco legal.
  • Loading branch information
cmlccie committed Nov 3, 2016
1 parent 1fb9f6a commit 6819e3b
Show file tree
Hide file tree
Showing 16 changed files with 92 additions and 6 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Cisco DevNet
Copyright (c) 2016 Cisco Systems, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,9 @@ Interested in contributing code?
#. Submit a `pull request`_, and move your issue to the 'Code Review' column on the projects_ page.


*Copyright (c) 2016 Cisco Systems, Inc.*


.. _developer.ciscospark.com: https://developer.ciscospark.com
.. _pagination: https://developer.ciscospark.com/pagination.html
.. _PyCharm: https://www.jetbrains.com/pycharm/
Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@
from .api.webhooks import Webhook, WebhooksAPI


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


# Versioneer version control
from ._version import get_versions
__version__ = get_versions()['version']
Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/api/accesstokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
from ciscosparkapi.sparkdata import SparkData


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


API_ENDPOINT = "access_token"


Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/api/memberships.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
from ciscosparkapi.sparkdata import SparkData


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


class Membership(SparkData):
"""Model a Spark 'membership' JSON object as a native Python object."""

Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/api/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@
from ciscosparkapi.sparkdata import SparkData


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


class Message(SparkData):
"""Model a Spark 'message' JSON object as a native Python object."""

Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/api/people.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
from ciscosparkapi.sparkdata import SparkData


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


class Person(SparkData):
"""Model a Spark 'person' JSON object as a native Python object."""

Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/api/rooms.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
from ciscosparkapi.sparkdata import SparkData


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


class Room(SparkData):
"""Model a Spark 'room' JSON object as a native Python object."""

Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/api/teammemberships.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@
from ciscosparkapi.sparkdata import SparkData


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


class TeamMembership(SparkData):
"""Model a Spark 'team membership' JSON object as a native Python object.
"""
Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/api/teams.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
from ciscosparkapi.sparkdata import SparkData


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


class Team(SparkData):
"""Model a Spark 'team' JSON object as a native Python object."""

Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/api/webhooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@
from ciscosparkapi.sparkdata import SparkData


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


class Webhook(SparkData):
"""Model a Spark 'webhook' JSON object as a native Python object."""

Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
"""ciscosparkapi exception classes."""


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


SPARK_RESPONSE_CODES = {
200: "OK",
204: "Member deleted.",
Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
from ciscosparkapi import ciscosparkapiException, SparkApiError


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


# Cisco Spark cloud Expected Response Codes (HTTP Response Codes)
ERC = {
'GET': 200,
Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/restsession.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
raise_if_extra_kwargs, check_response_code, extract_and_parse_json


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


def _fix_next_url(next_url):
"""Remove max=null parameter from URL.
Expand Down
6 changes: 6 additions & 0 deletions ciscosparkapi/sparkdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@
import json as json_pkg


__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


def _json_dict(json):
"""Given a JSON dictionary or string; return a dictionary.
Expand Down
15 changes: 10 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@
import versioneer


here = path.abspath(path.dirname(__file__))
__author__ = "Chris Lunsford"
__author_email__ = "chrlunsf@cisco.com"
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
__license__ = "MIT"


# Get the long description from the README file
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
current_path = path.abspath(path.dirname(__file__))
with open(path.join(current_path, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()


Expand All @@ -28,11 +32,12 @@
long_description=long_description,

url='https://github.com/CiscoDevNet/ciscosparkapi',
download_url="https://pypi.python.org/pypi/ciscosparkapi",

author='Chris Lunsford',
author_email='chrlunsf@cisco.com',
author=__author__,
author_email=__author_email__,

license='MIT',
license=__license__+"; "+__copyright__,

classifiers=[
'Development Status :: 4 - Beta',
Expand Down

0 comments on commit 6819e3b

Please sign in to comment.