Skip to content

Commit f6d2dda

Browse files
committed
Updated Copyright and License
1 parent d706265 commit f6d2dda

15 files changed

Lines changed: 31 additions & 4 deletions

File tree

.gitignore

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1+
# -------------------------------------------------------------------------
2+
# Copyright (c) 2020, PTC Inc. and/or all its affiliates. All rights reserved.
3+
# See License.txt in the project root for
4+
# license information.
5+
# --------------------------------------------------------------------------
6+
17
# Custom
28
#*.gitignore
39
*.pem
4-
_*
5-
10+
_notes
611

12+
_new*
13+
_test*
14+
_build*
715
# Byte-compiled / optimized / DLL files
816
__pycache__/
917
*.py[cod]

LICENSE

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
MIT License
22

3+
34
Copyright (c) 2020, PTC Inc. and/or all its affiliates. All rights reserved.
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ result = tag.add_tag(server, tag_path, tag_info))
9696

9797
```
9898

99-
## Need help
99+
## Need More Information
100100

101101
**Visit:**
102102
[Kepware.com](https://www.kepware.com/)

kepconfig/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
89
from . import connection, error
910

kepconfig/connection.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# --------------------------------------------------------------------------
66

77

8+
89
r""":mod:`connection` exposes an API that manages the RESTful requests
910
for the Kepware Configuration API.
1011
"""

kepconfig/connectivity/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
__path__ = __import__("pkgutil").extend_path(__path__, __name__)
89
from . import channel, device, tag

kepconfig/connectivity/channel.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
r""":mod:`channel` exposes an API to allow modifications (add, delete, modify) to
89
channel objects within the Kepware Configuration API
910
"""

kepconfig/connectivity/device.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
r""":mod:`device` exposes an API to allow modifications (add, delete, modify) to
89
device objects within the Kepware Configuration API
910
"""

kepconfig/connectivity/tag.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
r""":mod:`tag` exposes an API to allow modifications (add, delete, modify) to
89
tag and tag group objects within the Kepware Configuration API
910
"""

kepconfig/error.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66

7+
78
r""":mod:`error` Exception classes raised by Kepconfig.
89
Includes KepURLError and KepHTTPError
910
"""

0 commit comments

Comments
 (0)