forked from douban/dpark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 839 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
25
26
27
28
29
30
from setuptools import setup
version = '0.1'
setup(name='DPark',
version=version,
description="Python clone of Spark, MapReduce like "
+"computing framework supporting iterative algorithms.",
long_description=open("README.md").read(),
# Get more strings from
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Programming Language :: Python",
],
keywords='dpark python mapreduce spark',
author='Davies Liu',
author_email='davies.liu@gmail.com',
license= 'BSD License',
packages=['dpark', 'dpark.moosefs'],
include_package_data=True,
zip_safe=False,
install_requires=[
'setuptools',
'pyzmq',
],
tests_require=[
'nose',
],
test_suite='nose.collector',
)