forked from richardpenman/browsercookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
20 lines (18 loc) · 746 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import sys
import os
from distutils.core import setup
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='browsercookie',
version='0.7.7',
packages=['browsercookie'],
package_dir={'browsercookie' : '.'}, # look for package contents in current directory
author='Richard Penman',
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.',
long_description=read('README.rst'),
url='https://github.com/richardpenman/browsercookie',
install_requires=['pycryptodome', 'keyring', 'lz4'],
license='lgpl'
)