-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
29 lines (26 loc) · 834 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
28
29
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='webhdfspy',
version='0.3.5',
description='A wrapper library to access Hadoop HTTP REST API',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
],
keywords='hadoop webhdfs',
url='https://github.com/fasouto/webhdfspy',
author='Fabio Souto',
author_email='[email protected]',
license='MIT',
install_requires=[
'requests',
],
include_package_data=True,
packages=['webhdfspy'],
zip_safe=False)