-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
32 lines (30 loc) · 1.23 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
from setuptools import setup, find_packages
import joblibspark
if __name__ == '__main__':
setup(name='joblibspark',
version=joblibspark.__version__,
author='Weichen Xu',
author_email='[email protected]',
url='https://github.com/joblib/joblib-spark',
description="Joblib Apache Spark Backend",
long_description=joblibspark.__doc__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Education',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries',
],
platforms='any',
packages=find_packages(),
install_requires=[
'joblib>=0.14',
])