From 82250b6a6cb202d5a1c297e0f19b5361b885a41d Mon Sep 17 00:00:00 2001 From: Miguel Ferrer Date: Mon, 5 Mar 2018 09:08:37 -0500 Subject: [PATCH] Update README.md; Rename setup.py name for PyPi --- README.md | 11 ++++++++--- setup.py | 4 ++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e30a2de..9e04279 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Pipedrive API wrapper for Pypedrive written in Python. ## Installing ``` -git+git://github.com/GearPlug/pipedrive-python +pip install pipedrive-python-lib ``` ## Usage @@ -296,7 +296,12 @@ delete_hooks = client.delete_hook_subscription(hook_id="") ## Requirements - requests -## Tests + +## Contributing ``` -pipedrive/test.py +Fork it ( https://github.com/GearPlug/pipedrive-python/fork ) +Create your feature branch (git checkout -b my-new-feature) +Commit your changes (git commit -am 'Add some feature') +Push to the branch (git push origin my-new-feature) +Create a new Pull Request ``` diff --git a/setup.py b/setup.py index 0c2c8a3..b2babcb 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ def read(fname): return open(os.path.join(os.path.dirname(__file__), fname)).read() -setup(name='pipedrive', - version='0.1', +setup(name='pipedrive-python-lib', + version='0.1.0', description='API wrapper for Pipedrive written in Python', long_description=read('README.md'), url='https://github.com/GearPlug/pipedrive-python',