forked from cordmata/handle-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from cordmata/master
use requests.Session
- Loading branch information
Showing
3 changed files
with
46 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name = "py-handleclient", | ||
version = "0.5", | ||
packages = find_packages(), | ||
install_requires = [ | ||
'requests >= 0.14' | ||
name="py-handleclient", | ||
version="0.6", | ||
packages=find_packages(), | ||
install_requires=[ | ||
'requests >= 2.0' | ||
], | ||
author = "Matt Cordial", | ||
author_email = "[email protected]", | ||
description = "A client which communicates with the Handle Administration Web Service.", | ||
keywords = "cnri handle server web-service", | ||
author="Matt Cordial", | ||
author_email="[email protected]", | ||
description=( | ||
"A client which communicates with the Handle Administration " | ||
"Web Service." | ||
), | ||
keywords="cnri handle server web-service", | ||
) |