-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (30 loc) · 1.22 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
with open('README.md', 'r') as fh:
long_desc = fh.read()
setup(
name='ydot',
version='0.0.6',
author='Jee Vang',
author_email='[email protected]',
packages=find_packages(exclude=('*.tests', '*.tests.*', 'tests.*', 'tests')),
description='R-like formulas for Spark Dataframes',
long_description=long_desc,
long_description_content_type='text/markdown',
url='https://github.com/oneoffcoder/pyspark-formula',
keywords=' '.join(
['statistics', 'pyspark', 'formula', 'patsy', 'spark',
'dataframe', 'regression', 'classification', 'data',
'machine learning', 'artificial intelligence']),
install_requires=['scipy', 'numpy', 'pandas', 'scikit-learn', 'pyspark', 'patsy'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Development Status :: 5 - Production/Stable'
],
include_package_data=True,
test_suite='nose.collector'
)