-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5c53cca
commit c800105
Showing
3 changed files
with
145 additions
and
79 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 |
---|---|---|
|
@@ -2,14 +2,19 @@ | |
|
||
setup( | ||
name='browser-cookie3', | ||
version='0.17.0', | ||
version='0.17.1', | ||
packages=['browser_cookie3'], | ||
# look for package contents in current directory | ||
package_dir={'browser_cookie3': '.'}, | ||
author='Boris Babic', | ||
author_email='[email protected]', | ||
description='Loads cookies from your browser into a cookiejar object so can download with urllib and other libraries the same content you see in the web browser.', | ||
url='https://github.com/borisbabic/browser_cookie3', | ||
install_requires=['lz4', 'pycryptodomex', 'dbus-python'], | ||
install_requires=[ | ||
'lz4', | ||
'pycryptodomex', | ||
'dbus-python; python_version < "3.7" and ("bsd" in sys_platform or sys_platform == "linux")', | ||
'jeepney; python_version >= "3.7" and ("bsd" in sys_platform or sys_platform == "linux")' | ||
], | ||
license='lgpl' | ||
) |