-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (49 loc) · 1.63 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
#
# Copyright (c) 2012 Lukasz Biedrycki <[email protected]>
#
try:
from setuptools import setup, find_packages
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(
name = 'mongodb_gridfs_beaker',
version = '0.5.4',
description = 'Beaker backend to write sessions and caches to a MongoDB GridFS',
long_description = '\n' + open('README.rst').read(),
author='Lukasz Biedrycki',
author_email = '[email protected]',
keywords = 'mongo mongodb gridfs beaker cache session',
license = 'New BSD License',
url = 'https://github.com/loucash/mongodb_gridfs_beaker',
tests_require = ['nose', 'webtest'],
test_suite='nose.collector',
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_gridfs = mongodb_gridfs_beaker:MongoDBGridFSNamespaceManager
""",
requires=['pymongo', 'beaker'],
install_requires = [
'pymongo>=1.9',
'beaker>=1.5'
],
data_files=[("", ['README.rst'])],
package_data={'': ['README.rst']},
)