python-documentcloud 4.0.0__tar.gz → 4.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. {python-documentcloud-4.0.0/python_documentcloud.egg-info → python-documentcloud-4.0.2}/PKG-INFO +1 -1
  2. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/documents.py +1 -0
  3. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2/python_documentcloud.egg-info}/PKG-INFO +1 -1
  4. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/setup.py +1 -1
  5. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/LICENSE +0 -0
  6. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/README.md +0 -0
  7. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/__init__.py +0 -0
  8. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/addon.py +0 -0
  9. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/annotations.py +0 -0
  10. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/base.py +0 -0
  11. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/client.py +0 -0
  12. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/constants.py +0 -0
  13. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/exceptions.py +0 -0
  14. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/organizations.py +0 -0
  15. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/projects.py +0 -0
  16. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/sections.py +0 -0
  17. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/toolbox.py +0 -0
  18. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/documentcloud/users.py +0 -0
  19. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/python_documentcloud.egg-info/SOURCES.txt +0 -0
  20. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/python_documentcloud.egg-info/dependency_links.txt +0 -0
  21. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/python_documentcloud.egg-info/requires.txt +2 -2
  22. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/python_documentcloud.egg-info/top_level.txt +0 -0
  23. {python-documentcloud-4.0.0 → python-documentcloud-4.0.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-documentcloud
3
- Version: 4.0.0
3
+ Version: 4.0.2
4
4
  Summary: A simple Python wrapper for the DocumentCloud API
5
5
  Home-page: https://github.com/muckrock/python-documentcloud
6
6
  Author: Mitchell Kotler
@@ -312,6 +312,7 @@ class DocumentClient(BaseAPIClient):
312
312
  "force_ocr",
313
313
  "projects",
314
314
  "delayed_index",
315
+ "revision_control",
315
316
  ]
316
317
  # these parameters currently do not work, investigate...
317
318
  ignored_parameters = ["secure"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-documentcloud
3
- Version: 4.0.0
3
+ Version: 4.0.2
4
4
  Summary: A simple Python wrapper for the DocumentCloud API
5
5
  Home-page: https://github.com/muckrock/python-documentcloud
6
6
  Author: Mitchell Kotler
@@ -7,7 +7,7 @@ with open("README.md", "r") as fh:
7
7
 
8
8
  setup(
9
9
  name="python-documentcloud",
10
- version="4.0.0",
10
+ version="4.0.2",
11
11
  description="A simple Python wrapper for the DocumentCloud API",
12
12
  author="Mitchell Kotler",
13
13
  author_email="mitch@muckrock.com",
@@ -1,11 +1,11 @@
1
- fastjsonschema
2
1
  future
3
2
  listcrunch>=1.0.1
4
3
  python-dateutil
5
- pyyaml
6
4
  ratelimit
7
5
  requests
8
6
  urllib3
7
+ pyyaml
8
+ fastjsonschema
9
9
 
10
10
  [dev]
11
11
  black