forked from mrpowers-io/quinn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.04 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
from setuptools import setup, find_packages
install_requires = ['pytest']
tests_require = ['pytest']
setup(
name='quinn',
version='0.2.1',
author='Matthew Powers',
author_email='matthewkevinpowers@gmail.com',
url='https://github.com/MrPowers/quinn',
description='Pyspark helper methods to maximize developer efficiency.',
long_description='SparkSession extensions, DataFrame validation, Column extensions, SQL functions, and DataFrame transformations',
license='APACHE',
packages=find_packages(),
install_requires=install_requires,
tests_require=tests_require,
setup_requires=[],
python_requires='>=2.7',
extras_require={
'test': tests_require,
'all': install_requires + tests_require,
'docs': ['sphinx'] + tests_require,
'lint': []
},
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'
],
dependency_links=[],
include_package_data=False,
keywords=['apachespark', 'spark', 'pyspark'],
)