summaryrefslogtreecommitdiff
path: root/setup.py
blob: a017ea1497c05495a48b0b75d1818f84c573abf6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup

setup(
    name='crocoite',
    version='0.1.0',
    author='Lars-Dominik Braun',
    author_email='lars+crocoite@6xq.net',
    packages=['crocoite'],
    license='LICENSE.txt',
    description='Save website to WARC using Google Chrome.',
    long_description=open('README.rst').read(),
    install_requires=[
        'warcio',
        'html5lib>=0.999999999',
        'bottom',
        'pytz',
        'websockets',
        'aiohttp',
    ],
    entry_points={
    'console_scripts': [
            'crocoite-grab = crocoite.cli:single',
            'crocoite-recursive = crocoite.cli:recursive',
            'crocoite-irc = crocoite.cli:irc',
            'crocoite-irc-dashboard = crocoite.cli:dashboard',
            'crocoite-merge-warc = crocoite.tools:mergeWarc',
            'crocoite-extract-screenshot = crocoite.tools:extractScreenshot',
            ],
    },
    package_data={
            'crocoite': ['data/*'],
    },
    setup_requires=["pytest-runner"],
    tests_require=["pytest", 'pytest-asyncio', 'pytest-cov'],
)