forked from internetarchive/warc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 771 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
#! /usr/bin/env python
from setuptools import setup
setup(
name="warc",
version="0.2.0",
description="Python library to work with ARC and WARC files",
long_description=open('Readme.rst').read(),
license='GPLv2',
author="Internet Archive",
author_email="[email protected]",
url="http://github.com/internetarchive/warc",
packages=["warc"],
platforms=["any"],
package_data={'': ["LICENSE", "Readme.rst"]},
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)