mirror of
https://github.com/internetarchive/brozzler.git
synced 2025-02-23 16:19:49 -05:00
25 lines
936 B
Python
25 lines
936 B
Python
# vim: set sw=4 et:
|
|
|
|
import setuptools
|
|
|
|
setuptools.setup(name='umbra',
|
|
version='0.1',
|
|
description='Browser automation via chrome debug protocol',
|
|
url='https://github.com/internetarchive/umbra',
|
|
author='Eldon Stegall',
|
|
author_email='eldon@archive.org',
|
|
long_description=open('README.md').read(),
|
|
license='Apache License 2.0',
|
|
packages=['umbra'],
|
|
package_data={'umbra':['behaviors.d/*.js']},
|
|
install_requires=['kombu', 'websocket-client-py3==0.13.1','argparse'],
|
|
scripts=['bin/umbra', 'bin/load_url.py', 'bin/dump_queue.py'],
|
|
zip_safe=False,
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha Development Status',
|
|
'Environment :: Console',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python :: 3.3',
|
|
'Topic :: System :: Archiving',
|
|
])
|