forked from jcrist/hdfscm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 1.07 KB
/
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
import versioneer
from setuptools import setup
with open('README.rst') as f:
long_description = f.read()
setup(name='jupyter-hdfscm',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license='BSD',
maintainer='Jim Crist',
maintainer_email='[email protected]',
description='A Jupyter ContentsManager for HDFS',
long_description=long_description,
url='http://github.com/jcrist/hdfscm',
project_urls={
'Source': 'https://github.com/jcrist/hdfscm',
'Issue Tracker': 'https://github.com/jcrist/hdfscm/issues'
},
keywords='jupyter contentsmanager HDFS Hadoop',
classifiers=['Topic :: System :: Systems Administration',
'Topic :: System :: Distributed Computing',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3'],
packages=['hdfscm'],
python_requires='>=3.5',
install_requires=['notebook>=4.0', 'pyarrow>=0.9.0'])