Skip to content

Commit abf443c

Browse files
committed
Merge branch 'master' into develop
2 parents b71e675 + fd753ee commit abf443c

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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>`__.

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
31
# -----------------------------------------------------------
42
# Copyright (C) 2009 StatPro Italia s.r.l.
53
#
@@ -29,13 +27,18 @@
2927
exec(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+
3234
setup(name="drmaa",
3335
version=__version__,
3436
packages=packages,
3537
package_data=package_data,
3638
author="Dan Blanchard",
3739
author_email="[email protected]",
3840
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",

0 commit comments

Comments
 (0)