-
Notifications
You must be signed in to change notification settings - Fork 45
/
setup.py
63 lines (60 loc) · 1.85 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import find_packages, setup
import versioneer
setup(
name='pysparkling',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(),
license='MIT',
description='Pure Python implementation of the Spark RDD interface.',
long_description=open('README.rst', 'r', encoding='utf8').read(),
author='pysparkling contributors',
url='https://github.com/svenkreiss/pysparkling',
install_requires=[
'pytz>=2019.3',
'python-dateutil>=2.8.0'
],
extras_require={
'hdfs': ['hdfs>=2.0.0'],
'http': ['requests>=2.6.0'],
'performance': ['matplotlib>=1.5.3'],
's3': ['boto>=2.36.0'],
'streaming': ['tornado>=4.3'],
'sql': [
'numpy',
'pandas>=0.23.2',
],
'tests': [
'backports.tempfile==1.0rc1',
'cloudpickle>=0.1.0',
'isort',
'pylint',
'pylzma',
'memory-profiler>=0.47',
'pycodestyle',
'pytest',
'pytest-cov',
'requests>=2.6.0',
'tornado>=4.3',
],
'scripts': [
'ipyparallel',
'pyspark',
'matplotlib',
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: PyPy',
]
)