Skip to content

Commit 8be17ed

Browse files
committed
Merge pull request #1 from msabramo/long_description
setup.py: Read long_description from README.rst
2 parents 93c2b6a + 200ef48 commit 8be17ed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
from setuptools import *
33

44
description='A process manager in Python.'
5+
long_description = open('README.rst').read()
56

67
setup(
78
name='pymanager',
89
version='0.1.3',
910
description=description,
10-
long_description=description,
11+
long_description=long_description,
1112
url='https://github.com/baliame/pymanager',
1213
author='Baliame',
1314
author_email='akos.toth@cheppers.com',

0 commit comments

Comments
 (0)