#!/usr/bin/env python from setuptools import setup setup(name='hadoop', version='0.2.0', description='Python Hadoop I/O Utilities', license="Apache Software License 2.0 (ASF)", author='Matteo Bertozzi', author_email='theo.bertozzi@gmail.com', maintainer='Sebastian Nagel', maintainer_email='sebastian@commoncrawl.org', url='https://github.com/commoncrawl/python-hadoop', packages=["hadoop", 'hadoop.util', 'hadoop.io', 'hadoop.io.compress', "hadoop.pydoop"], require=['lzraw>=0.0.1'], extras_require = { 'pydoop': ['pydoop>=2.0.0'] } )