-
Notifications
You must be signed in to change notification settings - Fork 77
/
setup.py
45 lines (40 loc) · 1.38 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
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
__location__ = os.path.dirname(__file__)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='spark-df-profiling',
version='1.1.13',
author='Julio Antonio Soto de Vicente',
author_email='[email protected]',
packages=['spark_df_profiling'],
url='https://github.com/julioasotodv/spark-df-profiling',
license='MIT',
description='Create HTML profiling reports from Apache Spark DataFrames',
install_requires=[
"pandas>=0.17.0",
"matplotlib>=1.4",
"jinja2>=2.8",
"six>=1.9.0"
],
include_package_data = True,
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Framework :: IPython',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5'
],
keywords='spark pyspark report big-data pandas data-science data-analysis python jupyter ipython',
)