Skip to content

Commit

Permalink
Update documentation for context, and current URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodiazgutierrez committed Dec 6, 2020
1 parent 2c57ef7 commit 242ba88
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
============

Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 242ba88

Please sign in to comment.