Skip to content

Commit

Permalink
Add setup.py (opaque-systems#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
chester-leung committed Mar 9, 2021
1 parent 4fd6335 commit 991dc8a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env python

from setuptools import setup

setup(name='Hadoop',
version='0.1.4',
description='Python Hadoop I/O Utilities',
license="Apache Software License 2.0 (ASF)",
author='Matteo Bertozzi',
author_email='[email protected]',
url='https://hadoop.apache.org',
packages=["hadoop", 'hadoop.util', 'hadoop.io', 'hadoop.io.compress',
"hadoop.pydoop"],
extras_require = {
'pydoop': ['pydoop>=0.9.1']
}
)

0 comments on commit 991dc8a

Please sign in to comment.