-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (24 loc) · 932 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
from setuptools import find_packages, setup
import sparksql_magic
setup(
name='sparksql-magic',
version=sparksql_magic.__version__,
description='Spark SQL magic command for Jupyter notebooks',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
author='Chaerim Yeo',
author_email='[email protected]',
url='https://github.com/cryeo/sparksql-magic',
license='MIT License',
install_requires=['pyspark>=2.3.0', 'ipython>=7.4.0'],
packages=find_packages(exclude=('tests', 'docs')),
python_requires='>=3.6',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)