Skip to content

Commit 6819e3b

Browse files
committed
Update Copyright to Cisco Systems, Inc.
Updating package and file copyright references to specify ‘Cisco Systems, Inc.’ as per recommendations from Cisco legal.
1 parent 1fb9f6a commit 6819e3b

16 files changed

+92
-6
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Cisco DevNet
3+
Copyright (c) 2016 Cisco Systems, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,9 @@ Interested in contributing code?
185185
#. Submit a `pull request`_, and move your issue to the 'Code Review' column on the projects_ page.
186186

187187

188+
*Copyright (c) 2016 Cisco Systems, Inc.*
189+
190+
188191
.. _developer.ciscospark.com: https://developer.ciscospark.com
189192
.. _pagination: https://developer.ciscospark.com/pagination.html
190193
.. _PyCharm: https://www.jetbrains.com/pycharm/

ciscosparkapi/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@
2020
from .api.webhooks import Webhook, WebhooksAPI
2121

2222

23+
__author__ = "Chris Lunsford"
24+
__author_email__ = "chrlunsf@cisco.com"
25+
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
26+
__license__ = "MIT"
27+
28+
2329
# Versioneer version control
2430
from ._version import get_versions
2531
__version__ = get_versions()['version']

ciscosparkapi/api/accesstokens.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
from ciscosparkapi.sparkdata import SparkData
2525

2626

27+
__author__ = "Chris Lunsford"
28+
__author_email__ = "chrlunsf@cisco.com"
29+
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
30+
__license__ = "MIT"
31+
32+
2733
API_ENDPOINT = "access_token"
2834

2935

ciscosparkapi/api/memberships.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
from ciscosparkapi.sparkdata import SparkData
2020

2121

22+
__author__ = "Chris Lunsford"
23+
__author_email__ = "chrlunsf@cisco.com"
24+
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
25+
__license__ = "MIT"
26+
27+
2228
class Membership(SparkData):
2329
"""Model a Spark 'membership' JSON object as a native Python object."""
2430

ciscosparkapi/api/messages.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
from ciscosparkapi.sparkdata import SparkData
2222

2323

24+
__author__ = "Chris Lunsford"
25+
__author_email__ = "chrlunsf@cisco.com"
26+
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
27+
__license__ = "MIT"
28+
29+
2430
class Message(SparkData):
2531
"""Model a Spark 'message' JSON object as a native Python object."""
2632

ciscosparkapi/api/people.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818
from ciscosparkapi.sparkdata import SparkData
1919

2020

21+
__author__ = "Chris Lunsford"
22+
__author_email__ = "chrlunsf@cisco.com"
23+
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
24+
__license__ = "MIT"
25+
26+
2127
class Person(SparkData):
2228
"""Model a Spark 'person' JSON object as a native Python object."""
2329

ciscosparkapi/api/rooms.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818
from ciscosparkapi.sparkdata import SparkData
1919

2020

21+
__author__ = "Chris Lunsford"
22+
__author_email__ = "chrlunsf@cisco.com"
23+
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
24+
__license__ = "MIT"
25+
26+
2127
class Room(SparkData):
2228
"""Model a Spark 'room' JSON object as a native Python object."""
2329

ciscosparkapi/api/teammemberships.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,12 @@
1919
from ciscosparkapi.sparkdata import SparkData
2020

2121

22+
__author__ = "Chris Lunsford"
23+
__author_email__ = "chrlunsf@cisco.com"
24+
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
25+
__license__ = "MIT"
26+
27+
2228
class TeamMembership(SparkData):
2329
"""Model a Spark 'team membership' JSON object as a native Python object.
2430
"""

ciscosparkapi/api/teams.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@
1818
from ciscosparkapi.sparkdata import SparkData
1919

2020

21+
__author__ = "Chris Lunsford"
22+
__author_email__ = "chrlunsf@cisco.com"
23+
__copyright__ = "Copyright (c) 2016 Cisco Systems, Inc."
24+
__license__ = "MIT"
25+
26+
2127
class Team(SparkData):
2228
"""Model a Spark 'team' JSON object as a native Python object."""
2329

0 commit comments

Comments
 (0)