setup.py
f81e7fba
 from distutils.core import setup
ab58f171
 import os
 
 try:
 	os.unlink("MANIFEST")
 except:
 	pass
 
f81e7fba
 setup(name = "s3cmd",
7023e931
 	## Content description
8f9a6316
 	version = "0.9.1",
f81e7fba
 	packages = [ 'S3' ],
c76aaa1e
 	scripts = ['s3cmd'],
a70db595
 	data_files = [ ("share/s3cmd", [ "README" ]), ],
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
 	)