-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (30 loc) · 1.04 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
from setuptools import setup
from rethinkdb_sessions import __version__
import os
packages = ['rethinkdb_sessions']
setup(
name='django-rethinkdb-sessions',
version=__version__,
description= "rethinkdb backed sessions for django",
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read() ,
keywords='',
author='Max Presman',
author_email='[email protected]',
url='http://github.com/maxpresman/django-rethinkdb-sessions',
license='MIT',
packages=packages,
zip_safe=False,
install_requires=['rethinkdb>=1.7.0'],
include_package_data=True,
test_suite="tests",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License"
],
)