Skip to content

Commit 242ba88

Browse files
Update documentation for context, and current URLs
1 parent 2c57ef7 commit 242ba88

2 files changed

Lines changed: 13 additions & 12 deletions

File tree

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,23 @@
1-
====================================
2-
Getting Started with Priority Matrix
3-
====================================
1+
# What is this?
42

3+
This project is library to facilitate interaction with the Priority Matrix API.
4+
Priority Matrix is a multiplatform software suite that implements the [prioritization matrix](https://appfluence.com/productivity/prioritization-matrix/) method for project and project management.
5+
6+
Getting Started with the library
7+
====================================
58

69
Requirements
710
============
8-
Install dependencies:
9-
The API request processor library [Slumber](http://slumber.readthedocs.org/en/v0.6.0/) :
11+
Start by installing the API request processor library [Slumber](https://slumber.readthedocs.org/en/v0.6.0/):
1012

1113
`$ pip install slumber`
1214

1315

14-
The encoder and decoder Json library [Demjson](https://pypi.python.org/pypi/demjson) :
16+
Then, the encoder and decoder Json library [Demjson](https://pypi.python.org/pypi/demjson) :
1517

1618
`$ pip install demjson`
1719

1820

19-
2021
Installation
2122
============
2223

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
from setuptools import setup
22

33
setup(name='prioritymatrix',
4-
version='0.1',
4+
version='0.2',
55
description='Priority Matrix API',
6-
author='Samuel Carmona',
7-
url = 'https://github.com/samuc/prioritymatrix-python',
8-
download_url = 'https://github.com/samuc/prioritymatrix-python/tarball/0.1',
9-
author_email='samuel@appfluence.com',
6+
author='Appfluence Inc',
7+
url='https://github.com/appfluence/prioritymatrix-python',
8+
download_url = 'https://github.com/appfluence/prioritymatrix-python/tarball/0.2',
9+
author_email='support+github@appfluence.com',
1010
license='MIT',
1111
packages=['prioritymatrix'],
1212
zip_safe=False)

0 commit comments

Comments
 (0)