-
Notifications
You must be signed in to change notification settings - Fork 144
/
setup.py
20 lines (19 loc) · 836 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
setup(
name='browser-cookie3',
version='0.19.1',
packages=['browser_cookie3'],
# look for package contents in current directory
package_dir={'browser_cookie3': 'browser_cookie3'},
author='Boris Babic',
author_email='boris.ivan.babic@gmail.com',
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")'
],
license='lgpl'
)