-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (22 loc) · 865 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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
from distutils.core import setup
setup(
name='on_the_fly',
packages=['on_the_fly', ],
version="0.02rc4",
description='on_the_fly: out-of-core learning for PySpark and Python iterators.',
long_description="""
on_the_fly is a machine learning toolkit designed to efficiently perform
online feature extraction and learning on RDD and Python iterators.
""",
author='Peng Yu',
author_email='yupbank@gmail.com',
url='https://github.com/yupbank/on_the_fly',
download_url='https://github.com/yupbank/on_the_fly/archive/0.02rc4.tar.gz',
keywords=['on the fly', 'machine learning', 'sklearn', 'online'],
classifiers=[],
install_requires=open('requirements.txt').read().split()
)