setup.py

branch
trunk
changeset 119
75152089f36a
parent 101
014efef1a48f
child 121
957d19158b7e
equal deleted inserted replaced
118:e882969d1e6b 119:75152089f36a
6 version = "6.4", 6 version = "6.4",
7 description = "Script to intelligently extract multiple archive types", 7 description = "Script to intelligently extract multiple archive types",
8 author = "Brett Smith", 8 author = "Brett Smith",
9 author_email = "brettcsmith@brettcsmith.org", 9 author_email = "brettcsmith@brettcsmith.org",
10 url = "http://www.brettcsmith.org/2007/dtrx/", 10 url = "http://www.brettcsmith.org/2007/dtrx/",
11 download_url = "http://www.brettcsmith.org/2007/dtrx/",
11 scripts = ['scripts/dtrx'], 12 scripts = ['scripts/dtrx'],
12 license = "GNU General Public License, version 3 or later" 13 license = "GNU General Public License, version 3 or later",
13 ) 14 classifiers = ['Development Status :: 5 - Production/Stable',
15 'Environment :: Console',
16 'Intended Audience :: End Users/Desktop',
17 'Intended Audience :: System Administrators',
18 'License :: OSI Approved :: GNU General Public License (GPL)',
19 'Natural Language :: English',
20 'Operating System :: POSIX',
21 'Programming Language :: Python',
22 'Topic :: Utilities'],
23 long_description = """dtrx extracts archives in a number of different
24 formats; it currently supports tar, zip (including self-extracting
25 .exe files), cpio, rpm, deb, gem, 7z, cab, rar, and InstallShield
26 files. It can also decompress files compressed with gzip, bzip2,
27 lzma, or compress.
28
29 In addition to providing one command to handle many different archive
30 types, dtrx also aids the user by extracting contents consistently.
31 By default, everything will be written to a dedicated directory
32 that's named after the archive. dtrx will also change the
33 permissions to ensure that the owner can read and write all those
34 files."""
35 )

mercurial