-
Notifications
You must be signed in to change notification settings - Fork 145
/
Copy pathsetup.py
22 lines (21 loc) · 1005 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='browser-cookie3',
version='0.20.1',
packages=['browser_cookie3'],
# look for package contents in current directory
package_dir={'browser_cookie3': '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.', # noqa: E501
url='https://github.com/borisbabic/browser_cookie3',
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")',
'shadowcopy; python_version >= "3.7" and platform_system == "Windows"',
],
entry_points={'console_scripts': ['browser-cookie=browser_cookie3.__main__:main']},
license='lgpl'
)