Skip to content

Commit dc7d066

Browse files
committed
Removed simplejson from install_requires in setup.
1 parent 1ee8a96 commit dc7d066

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# python-quickbooks
22
-------------------
33

4-
A Python library for accessing the Quickbooks API.
4+
A Python library for accessing the Quickbooks API.
55
Complete rework of [quickbooks-python](https://github.com/troolee/quickbooks-python).
66

77
These instructions were written for a Django application. Make sure to change it to whatever framework/method you're using.
@@ -69,10 +69,10 @@ List of objects:
6969
customers = Customer.all()
7070

7171

72-
Filtered list of objects:
72+
Filtered list of objects (filtering currently only supports simple queries):
7373

7474

75-
customer = Customer.filter(Active=True)
75+
customers = Customer.filter(Active=True)
7676

7777

7878
Get single object by Id and update:
@@ -92,7 +92,7 @@ Create new object:
9292

9393

9494

95-
__Note:__ This is a work-in-progress. It was made public to help other developers access the QuickBooks API,
96-
it's not a guarantee that it will ever be finished.
95+
__Note:__ This is a work-in-progress made public to help other developers access the QuickBooks API.
96+
Built for a Django project running on Python 2. It has not been tested with Python 3.
9797

9898

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22

33

4-
VERSION = (0, 1, 0)
4+
VERSION = (0, 2, 0)
55
version = '.'.join(map(str, VERSION))
66

77
setup(
@@ -17,7 +17,6 @@
1717
install_requires=[
1818
'setuptools',
1919
'rauth',
20-
'simplejson',
2120
'python-dateutil',
2221
],
2322

0 commit comments

Comments
 (0)