-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
38 lines (34 loc) · 875 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
31
32
33
34
35
36
37
38
#!/usr/bin/env python
import os
import sys
import glob
from setuptools import setup
try:
import multiprocessing # Seems to fix http://bugs.python.org/issue15881
except ImportError:
pass
setup(
name='durabledict',
version='0.9.4',
author='DISQUS',
author_email='[email protected]',
url='http://github.com/disqus/durabledict/',
description='Dictionary-style access to different types of models.',
packages=['durabledict'],
zip_safe=False,
tests_require=[
'Django<1.7',
'nose',
'mock',
'redis',
'kazoo',
],
test_suite='nose.collector',
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
)