-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
55 lines (48 loc) · 1.49 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from r3.version import __version__
setup(
name = 'r3',
version = __version__,
description = "r3 is a map-reduce engine written in python",
long_description = """
r3 is a map-reduce engine that uses redis as a backend. It's very simple to use.
""",
keywords = 'map reduce',
author = 'Bernardo Heynemann',
author_email = '[email protected]',
url = 'http://heynemann.github.com/r3/',
license = 'MIT',
classifiers = ['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
include_package_data = True,
package_data = {
'': ['*.gif', '*.png', '*.jpg', '*.jpeg', '*.css', '*.js', '*.html'],
},
packages = ['r3', 'r3'],
package_dir = {"r3": "r3"},
install_requires=[
'redis',
'tornado-redis',
'tornado',
'ujson',
'flask',
'argparse',
'hiredis'
],
entry_points = {
'console_scripts': [
'r3-app=r3.app.server:main',
'r3-web=r3.web.server:main',
'r3-map=r3.worker.mapper:main'
],
}
)