brozzler/setup.py

26 lines
913 B
Python
Raw Normal View History

# vim: set sw=4 et:
import setuptools
2014-05-20 16:44:13 -07:00
import glob
2014-01-21 06:41:46 +00:00
setuptools.setup(name='umbra',
version='0.1',
description='Browser automation via chrome debug protocol',
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(),
license='Apache License 2.0',
2014-01-21 06:41:46 +00:00
packages=['umbra'],
package_data={'umbra':['behaviors.d/*.js']},
install_requires=['kombu', 'websocket-client-py3==0.13.1','argparse'],
2014-05-20 16:44:13 -07:00
scripts=glob.glob("bin/*"),
2014-01-21 06:41:46 +00:00
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha Development Status',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.3',
2014-01-21 06:41:46 +00:00
'Topic :: System :: Archiving',
])