-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·27 lines (25 loc) · 1011 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
27
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='hdfscontents',
version='0.9',
author='Ahmad Al-Shishtawy',
author_email='[email protected]',
description='Jupyter content manager that uses the HDFS filesystem',
license='Apache License 2.0',
keywords='Jupyter, HDFS, HOPS, Hadoop',
url='https://github.com/hopshadoop/hdfscontents',
download_url = 'https://github.com/hopshadoop/hdfscontents/archive/0.6.tar.gz',
packages=['hdfscontents', 'tests'],
long_description=read('README.rst'),
classifiers=[
'Development Status :: 3 - Alpha',
'Framework :: IPython',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
], install_requires=['traitlets', 'notebook', 'pydoop', 'tornado', 'nbformat', 'ipython_genutils']
)