diff --git a/README.md b/README.md index 087d211..98b396c 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 @@ -48,8 +52,6 @@ $ cd gity/ $ python setup.py install ``` - - ## Contributing #### Bug Reports & Feature Requests diff --git a/setup.py b/setup.py index 75ea1ba..00aaa9a 100644 --- a/setup.py +++ b/setup.py @@ -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='mayuresh2212@gmail.com', description='The Git magician for Python', - long_description=long_description, + long_description=open(README.md).read(), packages=['gity'], include_package_data=True, platforms='any',