Metadata-Version: 2.1
Name: pyats
Version: 22.2
Summary: pyATS - Python Automation Test System
Home-page: https://developer.cisco.com/pyats/
Author: Cisco Systems Inc.
Author-email: pyats-support-ext@cisco.com
License: Apache 2.0
Keywords: pyats test automation
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Telecommunications Industry
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: MacOS
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.5
Requires-Dist: packaging (>=20.0)
Requires-Dist: pyats.aereport (<22.3.0,>=22.2.0)
Requires-Dist: pyats.aetest (<22.3.0,>=22.2.0)
Requires-Dist: pyats.async (<22.3.0,>=22.2.0)
Requires-Dist: pyats.log (<22.3.0,>=22.2.0)
Requires-Dist: pyats.kleenex (<22.3.0,>=22.2.0)
Requires-Dist: pyats.connections (<22.3.0,>=22.2.0)
Requires-Dist: pyats.datastructures (<22.3.0,>=22.2.0)
Requires-Dist: pyats.easypy (<22.3.0,>=22.2.0)
Requires-Dist: pyats.results (<22.3.0,>=22.2.0)
Requires-Dist: pyats.reporter (<22.3.0,>=22.2.0)
Requires-Dist: pyats.tcl (<22.3.0,>=22.2.0)
Requires-Dist: pyats.topology (<22.3.0,>=22.2.0)
Requires-Dist: pyats.utils (<22.3.0,>=22.2.0)
Provides-Extra: full
Requires-Dist: cookiecutter ; extra == 'full'
Requires-Dist: genie (<22.3.0,>=22.2.0) ; extra == 'full'
Requires-Dist: pyats.robot (<22.3.0,>=22.2.0) ; extra == 'full'
Requires-Dist: genie.libs.robot (<22.3.0,>=22.2.0) ; extra == 'full'
Requires-Dist: genie.telemetry (<22.3.0,>=22.2.0) ; extra == 'full'
Requires-Dist: genie.trafficgen (<22.3.0,>=22.2.0) ; extra == 'full'
Requires-Dist: pyats.contrib (<22.3.0,>=22.2.0) ; extra == 'full'
Provides-Extra: library
Requires-Dist: genie (<22.3.0,>=22.2.0) ; extra == 'library'
Provides-Extra: robot
Requires-Dist: pyats.robot (<22.3.0,>=22.2.0) ; extra == 'robot'
Requires-Dist: genie.libs.robot (<22.3.0,>=22.2.0) ; extra == 'robot'
Provides-Extra: template
Requires-Dist: cookiecutter ; extra == 'template'

pyATS - Cisco Python Automated Test System
==========================================

pyATS is an end-to-end testing ecosystem, specializing in data-driven and 
reusable testing, and engineered to be suitable for Agile, rapid development 
iterations. Extensible by design, pyATS enables developers start with small, 
simple and linear test cases, and scale towards large, complex and asynchronous 
test suites.

pyATS is initially developed internally in Cisco, and is now available to the
general public starting late 2017 through `Cisco DevNet`_. Visit the pyATS
home page at

    https://developer.cisco.com/site/pyats/

.. _Cisco DevNet: https://developer.cisco.com/

pyATS Package
-------------

This is the top-level package of pyATS. Installing it will automatically install
all pyATS components and dependencies.

Requirements
------------

pyATS currently supports Python 3.4+ on Linux & Mac systems. Windows platforms
are not yet supported.

Quick Start
-----------

.. code-block:: console

    $ pip install pyats

    # to install alpha/beta versions, add --pre
    $ pip install --pre pyats

For more information on setting up your Python development environment,
such as creating virtual environment and installing ``pip`` on your system, 
please refer to `Virtual Environment and Packages`_ in Python tutorials.

.. _Virtual Environment and Packages: https://docs.python.org/3/tutorial/venv.html

Example
-------

As part of installation, examples showcasing various features & idioms of coding
in pyATS will be copied to your virtual environment under ``examples/`` folder.

In addition, you can also get a copy of these examples here:
    https://github.com/CiscoDevNet/pyats-sample-scripts

The examples are self-explanatory, and includes the necessary instructions on 
how to run them.


