setup.py 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. try:
  2. from setuptools import setup
  3. except ImportError:
  4. from distutils.core import setup
  5. setup(name='parquet',
  6. version='1.1',
  7. description='Python support for Parquet file format',
  8. author='Joe Crobak',
  9. author_email='joecrow@gmail.com',
  10. url='https://github.com/jcrobak/parquet-python',
  11. license='Apache License 2.0',
  12. classifiers=[
  13. 'Development Status :: 3 - Alpha',
  14. 'Intended Audience :: Developers',
  15. 'Intended Audience :: System Administrators',
  16. 'License :: OSI Approved :: Apache Software License',
  17. 'Programming Language :: Python',
  18. 'Programming Language :: Python :: 2',
  19. 'Programming Language :: Python :: 3',
  20. 'Programming Language :: Python :: 2.7',
  21. 'Programming Language :: Python :: 3.4',
  22. 'Programming Language :: Python :: 3.5',
  23. 'Programming Language :: Python :: Implementation :: CPython',
  24. 'Programming Language :: Python :: Implementation :: PyPy',
  25. ],
  26. packages=[ 'parquet' ],
  27. install_requires=[
  28. 'thriftpy>=0.3.6',
  29. ],
  30. extras_require={
  31. ':python_version=="2.7"': [
  32. "backports.csv",
  33. ],
  34. 'snappy support': ['python-snappy']
  35. },
  36. entry_points={
  37. 'console_scripts': [
  38. 'parquet = parquet.__main__:main',
  39. ]
  40. },
  41. package_data={'parquet': ['*.thrift']},
  42. include_package_data=True,
  43. )