Added long description to setup.py
This commit is contained in:
parent
bd19fceeeb
commit
7f5fbcd2b1
13
setup.py
13
setup.py
|
@ -39,6 +39,19 @@ setup (
|
||||||
name = AppName,
|
name = AppName,
|
||||||
version = AppVersion,
|
version = AppVersion,
|
||||||
description = "simple manager for file archives of various types",
|
description = "simple manager for file archives of various types",
|
||||||
|
long_description = """Various archive types can be created, extracted, tested and listed by
|
||||||
|
patool. The advantage of patool is its simplicity in handling archive
|
||||||
|
files without having to remember a myriad of programs and options.
|
||||||
|
|
||||||
|
The archive format is determined by the file(1) program and as a
|
||||||
|
fallback by the archive file extension.
|
||||||
|
|
||||||
|
patool supports 7z (.7z), ZIP (.zip, .jar), GZIP (.gz), compress (.Z),
|
||||||
|
BZIP2 (.bz2), TAR (.tar), ARJ (.arj), CAB (.cab), CPIO (.cpio), RPM
|
||||||
|
(.rpm), DEB (.deb), LZIP (.lz), LZOP (.lzo), LZMA (.lzma), RAR (.rar)
|
||||||
|
and XZ (.xz) formats. It relies on helper applications to handle those
|
||||||
|
archive formats (for example bzip2 for BZIP2 archives).
|
||||||
|
""",
|
||||||
author = MyName,
|
author = MyName,
|
||||||
author_email = MyEmail,
|
author_email = MyEmail,
|
||||||
maintainer = MyName,
|
maintainer = MyName,
|
||||||
|
|
Loading…
Reference in New Issue