-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (27 loc) · 852 Bytes
/
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
import os
from setuptools import setup
setup(
name='rethinkengine',
version='0.1.0',
author='Bas Wind',
author_email='mailtobwind@gmail.com',
description='RethinkDB Object-Document Mapper',
license='BSD',
keywords='rethinkdb object-document mapper',
url='https://github.com/bwind/rethinkengine',
download_url='https://pypi.python.org/pypi/Propeller',
packages=['rethinkengine'],
include_package_data=True,
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=[
'rethinkdb==1.11.0-2',
'ordereddict==1.1',
],
)