brozzler/setup.py

34 lines
1.1 KiB
Python

import setuptools
import glob
setuptools.setup(name='brozzler',
version='1.0.1',
description='Distributed web crawling with browsers',
url='https://github.com/nlevitt/brozzler',
author='Noah Levitt',
author_email='nlevitt@archive.org',
long_description=open('README.rst').read(),
license='Apache License 2.0',
packages=['brozzler'],
package_data={'brozzler': ['behaviors.d/*.js*', 'behaviors.yaml']},
scripts=glob.glob('bin/*'),
install_requires=[
'PyYAML',
'youtube-dl',
'reppy',
'requests',
'websocket-client',
'pillow',
'surt',
'rethinkstuff',
],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Archiving',
])