forked from internetarchive/warctools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·39 lines (36 loc) · 1.18 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
'''
internetarchive/warctools setup
'''
from setuptools import setup
setup(
author='Thomas Figg',
author_email='tef@warctools.twentygototen.org',
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Topic :: System :: Archiving',
],
description='Command line tools and libraries for handling and manipulating WARC files (and HTTP contents)',
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
""",
maintainer='Internet Archive',
maintainer_email='info@archive.org',
name='warctools',
packages=['hanzo', 'hanzo.warctools', 'hanzo.httptools'],
test_suite="nose.collector",
tests_require=["nose"],
version='4.10.1.dev2',
)