forked from urbn/Caesium
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 692 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
__author__ = 'hunt3r'
from setuptools import setup
setup(name='Caesium',
version='0.3.1',
license='http://www.apache.org/licenses/LICENSE-2.0',
description='Caesium document revision and RESTful tools.',
author='Chris Hunter',
author_email='hunter.christopher@gmail.com',
url='http://urbn.github.io/Caesium',
packages=['caesium'],
install_requires=[
'tornado >= 3.1',
'motor >= 0.3',
'jsonschema >= 2.3.0'
],
keywords=[
"mongo", "mongodb", "pymongo", "gridfs", "bson", "motor", "tornado", "motor", "patch", "revision", "scheduler", "REST", "RESTful"
],
)