From 84c3f69293fa79d752127410c7468038c907c96a Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sun, 10 Dec 2017 12:31:07 +0100 Subject: Add distributed archiving Using celery. Also adds a plugin for the IRC bot sopel. Code still needs some love, but it should work. --- setup.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 52747c0..0ab9249 100644 --- a/setup.py +++ b/setup.py @@ -13,13 +13,14 @@ setup( 'pychrome', 'warcio', 'html5lib>=0.999999999', + 'Celery', ], entry_points={ 'console_scripts': [ 'crocoite-standalone = crocoite.cli:main', ], }, - data_files=[ - ('crocoite/data', ['crocoite/data/onload.js']), - ], + package_data={ + 'crocoite': ['data/*'], + }, ) -- cgit v1.2.3