File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,10 @@ DRMAA Python
1717 :target: https://crate.io/packages/drmaa
1818 :alt: Latest version on PyPI
1919
20+ .. image :: https://d2weczhvl823v0.cloudfront.net/drmaa-python/drmaa-python/trend.png
21+ :alt: Bitdeli badge
22+ :target: https://bitdeli.com/free
23+
2024`Distributed Resource Management Application API <http://en.wikipedia.org/wiki/DRMAA >`__
2125(DRMAA) bindings for Python. For more information
2226`read the docs <http://drmaa-python.readthedocs.org >`__.
Original file line number Diff line number Diff line change 1- # -*- coding: utf-8 -*-
2-
31# -----------------------------------------------------------
42# Copyright (C) 2009 StatPro Italia s.r.l.
53#
2927exec (compile (open ('drmaa/version.py' ).read (), 'drmaa/version.py' , 'exec' ))
3028# (we use the above instead of execfile for Python 3.x compatibility)
3129
30+ def readme ():
31+ with open ('README.rst' ) as f :
32+ return f .read ()
33+
3234setup (name = "drmaa" ,
3335 version = __version__ ,
3436 packages = packages ,
3537 package_data = package_data ,
3638 author = "Dan Blanchard" ,
37393840 description = "a python DRMAA library" ,
41+ long_description = readme (),
3942 license = "BSD" ,
4043 keywords = "python grid hpc drmaa" ,
4144 url = "https://github.com/drmaa-python/drmaa-python" ,
You can’t perform that action at this time.
0 commit comments