From 373032fc97d27c79895e6114670760aa717f9f61 Mon Sep 17 00:00:00 2001 From: Prashanth Pai Date: Tue, 24 Sep 2013 11:47:50 +0530 Subject: Add documentation The following guides were added: * Setting up a RHEL 6.x IdM server with a Fedora 18 client * Setting up and configuring swiftkerbauth * Architecture of Swiftkerbauth Change-Id: I50665e584ff9513b5a20d1eda546c73c93f14638 Signed-off-by: Prashanth Pai Reviewed-on: http://review.gluster.org/6040 Reviewed-by: Luis Pabon Tested-by: Luis Pabon --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 01210df..65aab59 100644 --- a/setup.py +++ b/setup.py @@ -19,6 +19,9 @@ from setuptools import setup from swiftkerbauth import __version__ import os +with open('README.md') as file: + long_description = file.read() + # Ugly hack to exclude data_files if running in tox as non root def include_data_files(): @@ -40,6 +43,7 @@ setup( license='Apache License (2.0)', author='Red Hat, Inc.', author_email='gluster-users@gluster.org', + long_description=long_description, url='https://forge.gluster.org/swiftkerbauth', packages=['swiftkerbauth'], keywords='openstack swift kerberos', -- cgit