Metadata-Version: 1.0
Name: sitedeploy
Version: 1.0
Summary: site deployment
Home-page: http://www.smallbulb.net
Author: David Siroky
Author-email: siroky@dasir.cz
License: MIT License
Description: **sitedeploy** is a replacement for sitecopy.
        
          * supported protocols: FTP, SSH (via `paramiko <http://www.lag.net/paramiko/>`_)
          * fast synchronization
        
        ``~/.sitedeployrc`` example::
        
          site bigcompany
            server ftp.bigcompany.com
            remote /bigcompanysite.com/www
            local /var/www/big
            protocol ftp
            username foo
            password xxxx
            permissions all
            exclude templates_c
            exclude *.log
        
          site smallcompany
            server ftp.smallc.com
            remote /html/
            local /var/www/small
            protocol ftp
            permissions all
            username bar
            password xxxx
        
        Basic steps:
          #. initialize (need to be performed only once)::
        
              $ sitesitedeploy.py -i bigcompany
          
          #. update changes::
        
              $ sitesitedeploy.py -u bigcompany
        
Keywords: site,deploy,synchronize,ftp,ssh
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: System :: Networking
Classifier: Topic :: Internet :: WWW/HTTP :: Site Management
Classifier: Topic :: Software Development
Classifier: Topic :: Utilities
