forked from aguynamedben/lazyboy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 915 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
# -*- coding: utf-8 -*-
#
# Lazyboy: Setup
#
# © 2009, 2010 Digg, Inc. All rights reserved.
# Author: Ian Eure <[email protected]>
#
from setuptools import setup, find_packages
import os
import glob
PROJECT_ROOT = os.path.dirname(os.path.abspath(__file__))
DEPS = glob.glob(os.path.dirname(os.path.abspath(__file__)) + "/deps/*")
DEPS.append("http://github.com/ieure/python-cassandra/downloads")
setup(name="Lazyboy",
version='0.7.5',
description="Object non-relational manager for Cassandra",
url="http://github.com/digg/lazyboy/tree/master",
packages=find_packages(),
include_package_data=True,
author="Ian Eure",
author_email="[email protected]",
license="Three-clause BSD",
keywords="database cassandra",
install_requires=['Thrift', 'Cassandra>=0.5.0rc3'],
zip_safe=False,
tests_require=['nose', 'coverage>=3.2b1'],
dependency_links=DEPS)