From 242ba8824dec4dd2d68beee0c4bfc67b64b64a9b Mon Sep 17 00:00:00 2001 From: Pablo Diaz-Gutierrez Date: Sun, 6 Dec 2020 15:16:15 -0800 Subject: [PATCH] Update documentation for context, and current URLs --- README.md | 15 ++++++++------- setup.py | 10 +++++----- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 184fc54..00f362a 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,23 @@ -==================================== -Getting Started with Priority Matrix -==================================== +# What is this? +This project is library to facilitate interaction with the Priority Matrix API. +Priority Matrix is a multiplatform software suite that implements the [prioritization matrix](https://appfluence.com/productivity/prioritization-matrix/) method for project and project management. + +Getting Started with the library +==================================== Requirements ============ -Install dependencies: -The API request processor library [Slumber](http://slumber.readthedocs.org/en/v0.6.0/) : +Start by installing the API request processor library [Slumber](https://slumber.readthedocs.org/en/v0.6.0/): `$ pip install slumber` -The encoder and decoder Json library [Demjson](https://pypi.python.org/pypi/demjson) : +Then, the encoder and decoder Json library [Demjson](https://pypi.python.org/pypi/demjson) : `$ pip install demjson` - Installation ============ diff --git a/setup.py b/setup.py index 485ceed..270555b 100755 --- a/setup.py +++ b/setup.py @@ -1,12 +1,12 @@ from setuptools import setup setup(name='prioritymatrix', - version='0.1', + version='0.2', description='Priority Matrix API', - author='Samuel Carmona', - url = 'https://github.com/samuc/prioritymatrix-python', - download_url = 'https://github.com/samuc/prioritymatrix-python/tarball/0.1', - author_email='samuel@appfluence.com', + author='Appfluence Inc', + url='https://github.com/appfluence/prioritymatrix-python', + download_url = 'https://github.com/appfluence/prioritymatrix-python/tarball/0.2', + author_email='support+github@appfluence.com', license='MIT', packages=['prioritymatrix'], zip_safe=False)