diff --git a/setup.py b/setup.py index 91c52f5..7c82ee3 100644 --- a/setup.py +++ b/setup.py @@ -9,13 +9,13 @@ setuptools.setup(name='umbra', long_description=open('README.md').read(), license='GPL', packages=['umbra'], - install_requires=['kombu', 'websocket-client-py3','psutil','argparse'], + install_requires=['kombu', 'websocket-client-py3','argparse'], scripts=['bin/umbra'], zip_safe=False, classifiers=[ 'Development Status :: 3 - Alpha Development Status', 'Environment :: Console', - 'License :: OSI Approved :: GNU General Public License (GPL)', - 'Programming Language :: Python :: 2.7', + 'License :: OSI Approved :: Apache Software License', + 'Programming Language :: Python :: 3', 'Topic :: System :: Archiving', ]) diff --git a/umbra/umbra.py b/umbra/umbra.py index 449ad22..ec8fa6b 100755 --- a/umbra/umbra.py +++ b/umbra/umbra.py @@ -90,7 +90,7 @@ class Chrome(): self.browser_wait=browser_wait 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]) start = time.time() import socket