forked from internetarchive/warctools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·27 lines (25 loc) · 858 Bytes
/
setup.py
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
#!/usr/bin/env python
import os
from setuptools import setup
setup(name='warctools',
version="4.8.3",
license="MIT License",
description='Command line tools and libraries for handling and manipulating WARC files (and HTTP contents)',
author='Thomas Figg',
author_email='tef@warctools.twentygototen.org',
packages=['hanzo', 'hanzo.warctools','hanzo.httptools'],
test_suite="nose.collector",
tests_require=["nose"],
entry_points="""
[console_scripts]
warcdump=hanzo.warcdump:run
arc2warc=hanzo.arc2warc:run
warcextract=hanzo.warcextract:run
warcfilter=hanzo.warcfilter:run
warcindex=hanzo.warcindex:run
warclinks=hanzo.warclinks:run
warcvalid=hanzo.warcvalid:run
warc2warc=hanzo.warc2warc:run
warcpayload=hanzo.warcpayload:run
""",
)