mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-06-20 04:44:12 -04:00
Update setup.py, get rid of unused dependency
This commit is contained in:
parent
05b6e7c827
commit
4852fbf29f
2 changed files with 4 additions and 4 deletions
6
setup.py
6
setup.py
|
@ -9,13 +9,13 @@ setuptools.setup(name='umbra',
|
||||||
long_description=open('README.md').read(),
|
long_description=open('README.md').read(),
|
||||||
license='GPL',
|
license='GPL',
|
||||||
packages=['umbra'],
|
packages=['umbra'],
|
||||||
install_requires=['kombu', 'websocket-client-py3','psutil','argparse'],
|
install_requires=['kombu', 'websocket-client-py3','argparse'],
|
||||||
scripts=['bin/umbra'],
|
scripts=['bin/umbra'],
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'Development Status :: 3 - Alpha Development Status',
|
'Development Status :: 3 - Alpha Development Status',
|
||||||
'Environment :: Console',
|
'Environment :: Console',
|
||||||
'License :: OSI Approved :: GNU General Public License (GPL)',
|
'License :: OSI Approved :: Apache Software License',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 3',
|
||||||
'Topic :: System :: Archiving',
|
'Topic :: System :: Archiving',
|
||||||
])
|
])
|
||||||
|
|
|
@ -90,7 +90,7 @@ class Chrome():
|
||||||
self.browser_wait=browser_wait
|
self.browser_wait=browser_wait
|
||||||
|
|
||||||
def __enter__(self):
|
def __enter__(self):
|
||||||
import psutil, subprocess
|
import subprocess
|
||||||
self.chrome_process = subprocess.Popen([self.executable, "--disable-web-sockets", "--incognito", "--temp-profile", "--remote-debugging-port=%s" % self.port])
|
self.chrome_process = subprocess.Popen([self.executable, "--disable-web-sockets", "--incognito", "--temp-profile", "--remote-debugging-port=%s" % self.port])
|
||||||
start = time.time()
|
start = time.time()
|
||||||
import socket
|
import socket
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue