-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 869 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
from setuptools import setup, find_packages
setup(
name="django-social-graph",
url="http://github.com/suselrd/django-social-graph/",
author="Susel Ruiz Duran",
version="0.3.5",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
description="Social Graph for Django + Redis",
install_requires=['redis>=2.10.3', 'django>=1.6.1', 'django-redis-cache==1.6.5'],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
"Environment :: Web Environment",
"Framework :: Django",
],
)