Browse code

update pypi metadata

update license text to reflect GPL v2+
add classifiers
add Matt(s) as maintainers, email to s3tools-bugs

Matt Domsch authored on 2015/02/04 07:10:01
Showing 2 changed files
... ...
@@ -7,7 +7,7 @@
7 7
 package = "s3cmd"
8 8
 version = "1.5.0"
9 9
 url = "http://s3tools.org"
10
-license = "GPL version 2"
10
+license = "GNU GPL v2+"
11 11
 short_description = "Command line tool for managing Amazon S3 and CloudFront services"
12 12
 long_description = """
13 13
 S3cmd lets you copy files from/to Amazon S3
... ...
@@ -68,6 +68,8 @@ setup(
68 68
     ## Packaging details
69 69
     author = "Michal Ludvig",
70 70
     author_email = "michal@logix.cz",
71
+    maintainer = "github.com/mdomsch, github.com/matteobar",
72
+    maintainer_email = "s3tools-bugs@lists.sourceforge.net",
71 73
     url = S3.PkgInfo.url,
72 74
     license = S3.PkgInfo.license,
73 75
     description = S3.PkgInfo.short_description,
... ...
@@ -78,7 +80,28 @@ Authors:
78 78
 --------
79 79
     Michal Ludvig  <michal@logix.cz>
80 80
 """ % (S3.PkgInfo.long_description),
81
-    install_requires=["python-dateutil"]
81
+
82
+    classifiers = [
83
+        'Development Status :: 5 - Production/Stable',
84
+        'Environment :: Console',
85
+        'Environment :: MacOS X',
86
+        'Environment :: Win32 (MS Windows)',
87
+        'Intended Audience :: End Users/Desktop',
88
+        'Intended Audience :: System Administrators',
89
+        'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
90
+        'Natural Language :: English',
91
+        'Operating System :: MacOS :: MacOS X',
92
+        'Operating System :: Microsoft :: Windows',
93
+        'Operating System :: POSIX',
94
+        'Operating System :: Unix',
95
+        'Programming Language :: Python :: 2.6',
96
+        'Programming Language :: Python :: 2.7',
97
+        'Programming Language :: Python :: 2 :: Only',
98
+        'Topic :: System :: Archiving',
99
+        'Topic :: Utilities',
100
+    ],
101
+
102
+    install_requires = ["python-dateutil"]
82 103
     )
83 104
 
84 105
 # vim:et:ts=4:sts=4:ai