Skip to content

Commit

Permalink
Merge pull request #16 from ultradns/orgchange
Browse files Browse the repository at this point in the history
orgchange
  • Loading branch information
stevedejong authored Apr 5, 2023
2 parents 5e665bf + 6f812d9 commit 7c05cd7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .plugin-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.1.0
2.1.1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description = "A sample Python client for communicating with the UltraDNS REST A
readme = "README.md"
license-files = { paths = ["LICENSE"] }
authors = [
{ name = "ultradns", email = "ultrassp-oss@neustarsecurityservices.com" },
{ name = "ultradns", email = "ultrassp-oss@vercara.com" },
]
keywords = [
"ultra_rest_client",
Expand Down
8 changes: 4 additions & 4 deletions sample.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright 2000 - 2013 NeuStar, Inc.All rights reserved.
# NeuStar, the Neustar logo and related names and logos are registered
# trademarks, service marks or tradenames of NeuStar, Inc. All other
# Copyright 2023 - Vercara. All rights reserved.
# Vercara, the Vercara logo and related names and logos are registered
# trademarks, service marks or tradenames of Vercara. All other
# product names, company names, marks, logos and symbols may be trademarks
# of their respective owners.
__author__ = 'Jon Bodner'
__author__ = 'UltraDNS'

import ultra_rest_client
import sys
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,16 @@
version='0.2.2',
description='A sample Python client for communicating with the UltraDNS REST API',
url='https://github.com/ultradns/python_rest_api_client',
author='Jon Bodner',
author_email='mervin.joy@neustarsecurityservices.com',
author='UltraDNS',
author_email='ultrassp-oss@vercara.com',
license='Apache License, Version 2.0',
keywords='ultra_rest_client',
packages=['ultra_rest_client'],
install_requires=['requests'],
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 5 - Production/Stable',
'Topic :: Utilities',
'Topic :: Internet :: Name Service (DNS)',
'License :: OSI Approved :: Apache Software License',
],
zip_safe=False
Expand Down
8 changes: 4 additions & 4 deletions ultra_rest_client/connection.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright 2000 - 2013 NeuStar, Inc.All rights reserved.
# NeuStar, the Neustar logo and related names and logos are registered
# trademarks, service marks or tradenames of NeuStar, Inc. All other
# Copyright 2023 Vercara. All rights reserved.
# Vercara, the Vercara logo and related names and logos are registered
# trademarks, service marks or tradenames of Vercara, Inc. All other
# product names, company names, marks, logos and symbols may be trademarks
# of their respective owners.
__author__ = 'Jon Bodner'
__author__ = 'UltraDNS'

# store the URL and the access/refresh tokens as state
import requests
Expand Down
8 changes: 4 additions & 4 deletions ultra_rest_client/ultra_rest_client.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright 2000 - 2013 NeuStar, Inc.All rights reserved.
# NeuStar, the Neustar logo and related names and logos are registered
# trademarks, service marks or tradenames of NeuStar, Inc. All other
# Copyright 2023 Vercara. All rights reserved.
# Vercara, the Vercara logo and related names and logos are registered
# trademarks, service marks or tradenames of Vercara. All other
# product names, company names, marks, logos and symbols may be trademarks
# of their respective owners.
__author__ = 'Jon Bodner'
__author__ = 'UltraDNS'
from .connection import RestApiConnection
import json
import time
Expand Down

0 comments on commit 7c05cd7

Please sign in to comment.