This repository was archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (45 loc) · 1.41 KB
/
setup.py
File metadata and controls
48 lines (45 loc) · 1.41 KB
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
39
40
41
42
43
44
45
46
47
48
#!/usr/bin/env python
#
# Copyright (c) 2009 Brendan W. McAdams <bwmcadams@gmail.com>
#
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'mongodb_beaker',
version = '0.1',
description = 'Beaker backend to write sessions and caches to a ' +\
'MongoDB schemaless database.',
long_description = '\n' + open('README.rst').read(),
author='Brendan W. McAdams',
author_email = 'bwmcadams@gmail.com',
keywords = 'mongo mongodb beaker cache session',
license = 'New BSD License',
url = 'http://bitbucket.org/bwmcadams/mongodb_beaker/',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages = find_packages(),
include_package_data=True,
zip_safe = True,
entry_points="""
[beaker.backends]
mongodb = mongodb_beaker:MongoDBNamespaceManager
""",
install_requires = [
'pymongo>=0.11',
'beaker>=1.4'
]
)