Skip to content

Commit

Permalink
Update long description
Browse files Browse the repository at this point in the history
  • Loading branch information
fedosov committed Sep 2, 2013
1 parent fc0899c commit 3651227
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
21 changes: 21 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
updates
==========

What It Does
------------

``updates`` is a tool to check for updated packages in the ``PyPI``.

Installation
------------

.. code:: bash
$ pip install updates
Usage
-----

.. code:: bash
$ updates
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,16 @@ def get_version():
}
}

## Get long_description from index.txt:
f = open(os.path.join(here, "docs", "index.rst"))
long_description = f.read().strip()
f.close()

setup(
name="updates",
version=get_version(),
description="Check for updated packages in the PyPI",
long_description=long_description,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion updates.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
__author__ = "Mikhail Fedosov ([email protected])"
__version__ = "0.1.2"
__version__ = "0.1.2.2"

# http://code.activestate.com/recipes/577708-check-for-package-updates-on-pypi-works-best-in-pi/
# http://stackoverflow.com/questions/287871/print-in-terminal-with-colors-using-python
Expand Down

0 comments on commit 3651227

Please sign in to comment.