2014-05-20 00:57:07 -07:00
|
|
|
# vim: set sw=4 et:
|
|
|
|
|
2014-05-20 02:42:40 -07:00
|
|
|
import setuptools
|
2014-01-21 06:41:46 +00:00
|
|
|
|
|
|
|
setuptools.setup(name='umbra',
|
|
|
|
version='0.1',
|
2014-05-20 00:57:07 -07:00
|
|
|
description='Browser automation via chrome debug protocol',
|
2014-01-23 18:26:20 -05:00
|
|
|
url='https://github.com/internetarchive/umbra',
|
2014-01-21 06:41:46 +00:00
|
|
|
author='Eldon Stegall',
|
|
|
|
author_email='eldon@archive.org',
|
2014-01-21 18:10:43 +00:00
|
|
|
long_description=open('README.md').read(),
|
2014-01-23 18:26:20 -05:00
|
|
|
license='Apache License 2.0',
|
2014-01-21 06:41:46 +00:00
|
|
|
packages=['umbra'],
|
2014-03-13 00:00:32 -07:00
|
|
|
package_data={'umbra':['behaviors.d/*.js']},
|
2014-05-20 00:57:07 -07:00
|
|
|
install_requires=['kombu', 'websocket-client-py3==0.13.1','argparse'],
|
2014-01-23 18:26:20 -05:00
|
|
|
scripts=['bin/umbra', 'bin/load_url.py', 'bin/dump_queue.py'],
|
2014-01-21 06:41:46 +00:00
|
|
|
zip_safe=False,
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha Development Status',
|
|
|
|
'Environment :: Console',
|
2014-01-23 16:18:13 -05:00
|
|
|
'License :: OSI Approved :: Apache Software License',
|
2014-02-12 12:17:41 -08:00
|
|
|
'Programming Language :: Python :: 3.3',
|
2014-01-21 06:41:46 +00:00
|
|
|
'Topic :: System :: Archiving',
|
|
|
|
])
|