brozzler/setup.py

34 lines
1.1 KiB
Python
Raw Normal View History

import setuptools
2014-05-20 16:44:13 -07:00
import glob
2014-01-21 06:41:46 +00:00
setuptools.setup(name='brozzler',
version='1.1.dev2',
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',
2016-03-02 00:16:58 +00:00
'surt>=0.3b2',
'rethinkstuff',
],
2014-01-21 06:41:46 +00:00
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
2014-01-21 06:41:46 +00:00
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP',
2014-01-21 06:41:46 +00:00
'Topic :: System :: Archiving',
])