setup.py
f81e7fba
 from distutils.core import setup
 setup(name = "s3cmd",
7023e931
 	## Content description
f81e7fba
 	version = "0.9.0a1",
 	packages = [ 'S3' ],
c76aaa1e
 	scripts = ['s3cmd'],
7023e931
 
 	## Packaging details
 	author = "Michal Ludvig",
 	author_email = "michal@logix.cz",
 	url = 'http://s3tools.sourceforge.net',
 	license = 'GPL version 2',
 	description = 'S3cmd is a tool for managing your Amazon S3 storage.',
 	long_description = """
 S3cmd lets you copy files from/to Amazon S3 
 (Simple Storage Service) using a simple to use
 command line client.
 
 Authors:
 --------
     Michal Ludvig <michal@logix.cz>
 """,
f81e7fba
 	)