Skip to content

Commit

Permalink
Use README.rst as long_description for setup.py
Browse files Browse the repository at this point in the history
Remove fancy stuff from README, fix url to screencast and use README for
the long_description in the package registration.
  • Loading branch information
babab committed Mar 18, 2016
1 parent 1103272 commit 26e702e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 26 deletions.
14 changes: 1 addition & 13 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
DisPass
******************************************************************************

.. image:: https://gemnasium.com/babab/DisPass.svg
:target: https://gemnasium.com/babab/DisPass

.. image:: https://badge.waffle.io/babab/DisPass.png?label=ready&title=Ready
:target: https://waffle.io/babab/DisPass
:alt: 'Stories in Ready'

DisPass is a password manager for GNU/Linux, \*BSD, MacOS X and Windows.
It can be used as any traditional password manager, but has one key
difference. DisPass does not store your passwords anywhere, so you
Expand All @@ -27,11 +20,6 @@ Resources
- Bitbucket: https://bitbucket.org/babab/dispass


.. image:: https://graphs.waffle.io/babab/DisPass/throughput.svg
:target: https://waffle.io/babab/DisPass/metrics
:alt: 'Throughput Graph'


Quick start
==============================================================================

Expand Down Expand Up @@ -81,7 +69,7 @@ Mini screencast
Checkout the following mini screencast. In this demo the label is added
interactively.

.. image:: docs/screencast.png
.. image:: https://raw.githubusercontent.com/babab/DisPass/master/docs/screencast.png
:target: https://asciinema.org/a/38378


Expand Down
14 changes: 1 addition & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@
from setuptools import setup
import dispass.dispass

long_desc = '''DisPass is a password manager for GNU/Linux, \*BSD, MacOS X and
Windows. It can be used as any traditional password manager, but has one key
difference. DisPass does not store your passwords anywhere, so you can never
lose them.
It creates strong and unique passphrases formed from a master password and a
label (and some optional parameters), helping you get rid of the bad habit of
using a single password for multiple websites.
Dispass is a console application, but also has a simple graphical interface.
'''

setup(
name='DisPass',
version=dispass.dispass.__version__,
Expand All @@ -25,7 +13,7 @@
download_url='http://pypi.python.org/pypi/DisPass/',
packages=['dispass', 'dispass.commands'],
license='ISC',
long_description=long_desc,
long_description=open('README.rst').read(),
platforms='any',
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 26e702e

Please sign in to comment.