Metadata-Version: 2.1
Name: sluggard
Version: 1.0.0
Summary: directory packaging tool
Home-page: https://github.com/SiLeader/sluggard
Author: SiLeader and Cerussite
License: UNKNOWN
Keywords: packaging,compression,archiving
Platform: UNKNOWN
Classifier: Environment :: Console
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Topic :: System :: Archiving
Classifier: Topic :: System :: Archiving :: Compression
Classifier: Topic :: System :: Archiving :: Packaging

#################################
Sluggard - auto packaging tool
#################################

*********
features
*********

+ archiving (tar)
+ compression (gzip, bzip2, xz)
+ ignore file

***********
how to use
***********

1. write ignore file
2. run sluggard command

ignore file
===============

example (`.packignore` file)

::

    .git/
    venv/
    dev/
    !.gitkeep


sluggard command
==================

::

    # only need -o option
    sluggard -o <output file>
    sluggard -o package.tar  # no compress
    sluggard -o package.tar.gz  # gz compress
    sluggard -o package.tar.xz  # xz compress
    sluggard -o package.tar.bz2  # bz2 compress

    # package specified directory (if not provided, use current directory)
    sluggard -o <output file> /path/to/directory

    # show help -h or --help
    sluggard -h


