Metadata-Version: 1.1
Name: compliancelib
Version: 0.3
Summary: A python library of IT Compliance Standards
Home-page: http://github.com/govready/compliancelib-python
Author: Greg Elin
Author-email: gregelin@govready.com
License: Apache License 2.0
Description: compliancelib
        =============
        A python package extracted from prototype 800-53-Control-Server (https://github.com/govready/800-53-server)
        
        Goal
        ----
        Create a python class that generates basic information about a FISMA 800-53 security control including:
        - [x] Full name of control
        - [x] Who has responsibility for control (e.g., organization or information system)
        
        Warning
        -------
        This is early code. There may be errors!
        
        Requirements
        ------------
        - Python 2.6.6 or 2.7+
        - xsltproc - to perform XSL transformations
        - PyYAML - to generate YAML
        
        Installation
        ------------
        Compliancelib can be installed with Python pip::
        
        	pip install compliancelib
        
        To install Python pip:
        
        - https://pip.pypa.io/en/stable/installing/
        - http://sharadchhetri.com/2014/05/30/install-pip-centos-rhel-ubuntu-debian/
        
        
        Compliancelib can beinstalled with Python Easy Install::
        
        	easy_install compliancelib
        
        
        Usage
        -----
        
        To use, simply do in python shell::
        
            >>> import compliancelib
            >>> c=compliancelib.SecControl("AC-1")
            >>> c.id
            'AC-1'
            >>> c.title
            u'ACCESS CONTROL POLICY AND PROCEDURES'
        
Keywords: compliance FISMA DICAP PCI
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.0
Classifier: Topic :: Text Processing :: Linguistic
