-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (33 loc) · 1.06 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
__author__ = "andrew.kelleher@buzzfeed.com (Andrew Kelleher)"
try:
from setuptools import setup, find_packages
except ImportError:
import distribute_setup
distribute_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name='phonon',
version='2.0',
packages=find_packages(),
author='Andrew Kelleher, Matthew Semanyshyn',
author_email='andrew.kelleher@buzzfeed.com, matthew.semanyshyn@buzzfeed.com',
description='Provides easy, fault tolerant, distributed references with redis as a backend.',
test_suite='test',
install_requires=[
'redis==2.10.5',
'pytz==2014.10',
'tornado==4.3',
],
tests_require=[
'funcsigs==0.4',
'mock==1.3.0',
'pbr==1.8.1',
],
url='http://www.github.com/buzzfeed/phonon',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Development Status :: 4 - Beta',
],
keywords="distributed reference references aggregation pipeline big data online algorithm"
)