Skip to content

Commit

Permalink
Modified README and setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mayureshnw committed Jun 5, 2015
1 parent ab666a1 commit d44f165
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
```
The git magician for python. gity makes using git commands in python, a piece of cake.

Most existing Python modules for for interacting with git repositories are extremely verbose and cumbersome.

Python doesnt have a builtin module and with the existing ones it requires tremendous amount of documentation digging to get hold of the simplest functions.

Things shouldn't be this way. Not in Python.

## Features

Expand All @@ -29,7 +33,7 @@ The git magician for python. gity makes using git commands in python, a piece of
- git push
- git pull
- git checkout

- git reset head

## Installation

Expand All @@ -48,8 +52,6 @@ $ cd gity/
$ python setup.py install
```



## Contributing

#### Bug Reports & Feature Requests
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
from distutils.core import setup
from setuptools import setup, find_packages

long_description = read('README.txt')
version = 0.0.1

setup(
name='gity',
version=sandman.__version__,
version=version,
url='https://github.com/mnw2212/gity',
download_url = '',
license='MIT',
author='Mayuresh Waykole',
author_email='[email protected]',
description='The Git magician for Python',
long_description=long_description,
long_description=open(README.md).read(),
packages=['gity'],
include_package_data=True,
platforms='any',
Expand Down

0 comments on commit d44f165

Please sign in to comment.