-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 619 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 619 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from distutils.core import setup
import warcat.version
setup(name='Warcat',
version=warcat.version.__version__,
description='Tool and library for handling Web ARChive (WARC) files.',
author='Christopher Foo',
author_email='chris.foo@gmail.com',
url='https://github.com/chfoo/warcat',
packages=[
'warcat',
'warcat.model',
],
install_requires=[
'isodate',
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: System :: Archiving',
],
)