Skip to content
This repository was archived by the owner on Feb 29, 2020. It is now read-only.

Commit 1115167

Browse files
committed
cleanup readme
1 parent 71fa675 commit 1115167

File tree

3 files changed

+34
-10
lines changed

3 files changed

+34
-10
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@
55
build
66
dist
77
*.pyc
8+
*.egg-info

README.rst

Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,52 @@
11
gaenv - Command line utility for managing appengine thirdparty packages
2-
------------------
2+
***********************************************************************
33

4-
Installation::
4+
Install
5+
=======
56

6-
$ sudo pip install gaenv
7+
Simply run the following::
78

8-
Or download directly at [PyPI](https://pypi.python.org/pypi/gaenv)
9+
$ python setup.py install
910

11+
or `PyPi`_::
1012

11-
Example Usage::
13+
$ pip install reststore
14+
15+
16+
Example Usage
17+
=============
18+
19+
Note that this not run "pip install -r requirements.txt" so you'll have to run it manually first before running this::
1220

1321
Create a requirements.txt and put all requirements then run
1422
$ gaenv
1523
For more
1624
$ gaenv -h
1725
or with python extracted source
18-
python gaenv-0.x.x/ggaenv -h
26+
$ python gaenv-0.x.x/ggaenv -h
1927
20-
Note that this not run "pip install -r requirements.txt" so you'll have to run it manually first before running this.
21-
2228

2329
This will create symbolic links from your default python version packages to
2430
the current directory that you execute it on. By default it will create
2531
gaenv_lib folder with all packages in your requirements.txt and will
2632
ask you if you want this utility to insert the import statement that updates
2733
your sys.path, or you can just do it manually.
2834

29-
If you have questions/suggestions you can contact me at [contact form here](http://www.altlimit.com)
35+
Change log
36+
==========
37+
38+
0.1.4 (2013-06-15)
39+
40+
* added run from source
41+
42+
0.1 (2013-06-13)
43+
44+
45+
Links
46+
=====
47+
* `github.com`_ - source code
48+
* `altlimit.com`_ - website
49+
50+
.. _github.com: https://github.com/faisalraja/gaenv
51+
.. _PyPi: https://pypi.python.org/pypi/gaenv
52+
.. _altlimit.com: http://www.altlimit.com

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def main():
1010
setup(name='gaenv',
1111
version=version,
1212
description="Tool for manage packages for google app engine",
13-
long_description=open('README.md').read(),
13+
long_description=open('README.rst').read(),
1414
classifiers=[],
1515
keywords='app engine google tool',
1616
author='Faisal Raja',

0 commit comments

Comments
 (0)