forked from dayorbyte/MongoAlchemy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 789 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 789 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
#!/usr/bin/env python
from distutils.core import setup
VERSION = '0.23.4'
DESCRIPTION = 'Document-Object Mapper/Toolkit for Mongo Databases'
setup(
name='MongoAlchemy',
version=VERSION,
description=DESCRIPTION,
author='Jeffrey Jenkins',
license='MIT',
author_email='jeff@qcircles.net',
url='http://mongoalchemy.org/',
packages=['mongoalchemy', 'mongoalchemy.fields'],
install_requires=['pymongo'],
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)