Browse code

- Added configuration for setup.py sdist

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

Michal Ludvig authored on 2007/01/19 09:37:28
Showing 2 changed files
... ...
@@ -1,3 +1,7 @@
1
+[sdist]
2
+formats = gztar,zip
3
+
1 4
 [bdist_rpm]
2 5
 requires = python >= 2.5
3 6
 group = Productivity/Archiving
7
+use-bzip2 = 1
... ...
@@ -1,7 +1,14 @@
1 1
 from distutils.core import setup
2
+import os
3
+
4
+try:
5
+	os.unlink("MANIFEST")
6
+except:
7
+	pass
8
+
2 9
 setup(name = "s3cmd",
3 10
 	## Content description
4
-	version = "0.9.0a1",
11
+	version = "0.9.0",
5 12
 	packages = [ 'S3' ],
6 13
 	scripts = ['s3cmd'],
7 14