From 5d668e148d6bd7dd2dbe36eca39049ee83762b62 Mon Sep 17 00:00:00 2001 From: Pavlos Ratis Date: Sat, 21 Sep 2013 15:49:59 +0300 Subject: fix wrong classifier --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 88c63e0..262225c 100755 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', - 'Intended Audience :: Students', + 'Intended Audience :: System Administrators', 'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)', 'Natural Language :: English', 'Operating System :: OS Independent', -- cgit v1.2.3-65-gdbad From 217a471f2bb815dc7539794229663accddcd4cc3 Mon Sep 17 00:00:00 2001 From: Pavlos Ratis Date: Sat, 21 Sep 2013 16:16:16 +0300 Subject: convert README from Markdown to ReStructedText + add short description --- README.md | 2 -- README.rst | 15 +++++++++++++++ setup.py | 2 +- 3 files changed, 16 insertions(+), 3 deletions(-) delete mode 100644 README.md create mode 100644 README.rst diff --git a/README.md b/README.md deleted file mode 100644 index 0b1597c..0000000 --- a/README.md +++ /dev/null @@ -1,2 +0,0 @@ -[![Build Status](https://travis-ci.org/gentoo/identity.gentoo.org.png?branch=master)](https://travis-ci.org/gentoo/identity.gentoo.org) -[![Coverage Status](https://coveralls.io/repos/gentoo/identity.gentoo.org/badge.png?branch=master)](https://coveralls.io/r/gentoo/identity.gentoo.org?branch=master) diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..7199f5b --- /dev/null +++ b/README.rst @@ -0,0 +1,15 @@ +Gentoo Identity +*************** +**Gentoo Identity** (codename: Okupy) is a Django_ LDAP_ webUI and OpenID_ provider for the Gentoo_ Linux project. +Okupy aims to allow Gentoo users and developers to configure easily their attributes from Gentoo’s LDAP server. + +.. _Django: http://www.djangoproject.com/ +.. _Gentoo: https://gentoo.org +.. _LDAP: https://en.wikipedia.org/wiki/OpenLDAP +.. _OpenID: http://openid.net/get-an-openid/what-is-openid/ + +.. image:: https://travis-ci.org/gentoo/identity.gentoo.org.png?branch=master + :target: https://travis-ci.org/gentoo/identity.gentoo.org + +.. image:: https://coveralls.io/repos/gentoo/identity.gentoo.org/badge.png?branch=master + :target: https://coveralls.io/r/gentoo/identity.gentoo.org?branch=master diff --git a/setup.py b/setup.py index 262225c..56a4d7f 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ setup( author_email='identity@gentoo.org', url='http://github.com/gentoo/identity.gentoo.org', description='Django LDAP webUI and OpenID provider for the Gentoo Linux project', - long_description=open('README.md').read(), + long_description=open('README.rst').read(), keywords='django, ldap, gentoo', packages=find_packages(), include_package_data=True, -- cgit v1.2.3-65-gdbad