-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
32 lines (28 loc) · 1.01 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
29
30
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
requires = open('requirements.txt').read().strip().split('\n')
setup(
name='intake-spark',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='Apache Spark plugin for Intake',
url='https://github.com/ContinuumIO/intake-spark',
maintainer='Martin Durant',
maintainer_email='[email protected]',
license='BSD',
py_modules=['intake_spark'],
packages=find_packages(),
package_data={'': ['*.csv', '*.yml', '*.yaml', '*.html']},
entry_points={
'intake.drivers': [
'spark_rdd = intake_spark.spark_sources:SparkRDD',
'spark_dataframe = intake_spark.spark_sources:SparkDataFrame',
'spark_cat = intake_spark.spark_cat:SparkTablesCatalog',
]},
include_package_data=True,
install_requires=requires,
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
zip_safe=False,
)