Revision: 113
Author: janne.t.harkonen
Date: Sun Sep 25 22:07:51 2011
Log: setup.py: Metadata for Pypi
http://code.google.com/p/robotframework-sshlibrary/source/detail?r=113
Modified:
/trunk/setup.py
=======================================
--- /trunk/setup.py Sun Nov 7 23:51:21 2010
+++ /trunk/setup.py Sun Sep 25 22:07:51 2011
@@ -5,18 +5,24 @@
sys.path.insert(0, 'src')
import SSHLibrary
-
-def main():
- setup(name = 'SSHLibrary',
- version = SSHLibrary.__version__,
- description = 'Test Library for Robot Framework enabling SSH',
- author = 'Robot Framework Developers',
- author_email = '[email protected]',
- url
= 'http://code.google.com/p/robotframework-sshlibrary/',
- package_dir = { '' : 'src'},
- packages = ['SSHLibrary']
- )
-
-
-if __name__ == "__main__":
- main()
+CLASSIFIERS = """
+Development Status :: 5 - Production/Stable
+License :: OSI Approved :: Apache Software License
+Operating System :: OS Independent
+Programming Language :: Python
+Topic :: Software Development :: Testing
+"""[1:-1]
+
+setup(name = 'robotframework-sshlibrary',
+ version = SSHLibrary.__version__,
+ description = 'Test Library for Robot Framework enabling SSH',
+ author = 'Robot Framework Developers',
+ author_email = '[email protected]',
+ url = 'http://code.google.com/p/robotframework-sshlibrary/',
+ license = 'Apache License 2.0',
+ keywords = 'robotframework testing testautomation ssh',
+ platforms = 'any',
+ classifiers = CLASSIFIERS.splitlines(),
+ package_dir = { '' : 'src'},
+ packages = ['SSHLibrary']
+ )