Browse code

Added info for building RPM packages.

git-svn-id: https://s3tools.svn.sourceforge.net/svnroot/s3tools/s3py/trunk@54 830e0280-6d2a-0410-9c65-932aecc39d9d

Michal Ludvig authored on 2007/01/19 09:11:11
Showing 2 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+[bdist_rpm]
1
+requires = python >= 2.5
2
+group = Productivity/Archiving
... ...
@@ -1,8 +1,23 @@
1 1
 from distutils.core import setup
2 2
 setup(name = "s3cmd",
3
+	## Content description
3 4
 	version = "0.9.0a1",
4
-	author = "Michal Ludvig",
5
-	author_email = "michal@logix.cz",
6 5
 	packages = [ 'S3' ],
7 6
 	scripts = ['s3cmd'],
7
+
8
+	## Packaging details
9
+	author = "Michal Ludvig",
10
+	author_email = "michal@logix.cz",
11
+	url = 'http://s3tools.sourceforge.net',
12
+	license = 'GPL version 2',
13
+	description = 'S3cmd is a tool for managing your Amazon S3 storage.',
14
+	long_description = """
15
+S3cmd lets you copy files from/to Amazon S3 
16
+(Simple Storage Service) using a simple to use
17
+command line client.
18
+
19
+Authors:
20
+--------
21
+    Michal Ludvig <michal@logix.cz>
22
+""",
8 23
 	)