-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 810 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 810 Bytes
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name = "friendlydb",
version = "2.0.0",
description = "A small & fast following/followers database.",
author = 'Daniel Lindsley',
author_email = 'daniel@toastdriven.com',
long_description=open('README.rst', 'r').read(),
packages=[
'friendlydb',
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
url = 'http://github.com/toastdriven/friendlydb',
install_requires=[
'redis>=2.72',
],
)