Skip to content

Commit

Permalink
Merge pull request #2 from Apstra/license
Browse files Browse the repository at this point in the history
License
  • Loading branch information
jeremyschulman committed Aug 13, 2016
2 parents dfd98a2 + f5921df commit 178521c
Show file tree
Hide file tree
Showing 22 changed files with 111 additions and 1 deletion.
5 changes: 5 additions & 0 deletions pylib/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

__import__('pkg_resources').declare_namespace('aeon')
5 changes: 5 additions & 0 deletions pylib/aeon/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

__import__('pkg_resources').declare_namespace('aeon')
5 changes: 5 additions & 0 deletions pylib/aeon/cumulus/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

5 changes: 5 additions & 0 deletions pylib/aeon/cumulus/connector.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

import socket

import paramiko
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/cumulus/device.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

import re

from aeon import exceptions
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/eos/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

5 changes: 5 additions & 0 deletions pylib/aeon/eos/connector.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

import pyeapi
import socket

Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/eos/device.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula


from aeon import exceptions
from aeon.utils.probe import probe
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/eos/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

class EosException(Exception):
pass

Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

class TargetError(Exception):
pass

Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/nxos/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

from aeon.nxos.device import Device
5 changes: 5 additions & 0 deletions pylib/aeon/nxos/autoload/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

5 changes: 5 additions & 0 deletions pylib/aeon/nxos/autoload/guestshell.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

from collections import namedtuple
import time
import logging
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/nxos/autoload/install_os.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

from aeon import exceptions

__all__ = ['_install_os']
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/nxos/connector.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

import re
from lxml import etree
import requests
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/nxos/device.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula


from functools import partial
import importlib
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/nxos/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

class NxosException(Exception):
pass

Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/nxos/tests/t1.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

import logging

from aosxtools.proxyagents.nxos import *
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

5 changes: 5 additions & 0 deletions pylib/aeon/utils/probe.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

import socket
import datetime
import time
Expand Down
5 changes: 5 additions & 0 deletions pylib/aeon/utils/stdargs.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

import os
import argparse
import logging
Expand Down
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Copyright 2014-present, Apstra, Inc. All rights reserved.
#
# This source code is licensed under End User License Agreement found in the
# LICENSE file at http://www.apstra.com/community/eula

#
# Copyright 2016-present, Apstra, Inc. All rights reserved.
#
Expand All @@ -19,7 +24,7 @@
setup(
name="aeon-venos",
namespace_packages=['aeon'],
version="0.0.3",
version="0.2.0",
author="Jeremy Schulman",
author_email="jeremy@apstra.com",
description=("Aeon vendor NOS driver library"),
Expand Down

0 comments on commit 178521c

Please sign in to comment.