warcprox/setup.py
2016-05-11 11:41:56 -07:00

21 lines
640 B
Python

import setuptools
import codecs
setuptools.setup(
name='rethinkstuff',
version='0.1.6',
packages=['rethinkstuff'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
install_requires=['rethinkdb'],
url='https://github.com/nlevitt/rethinkstuff',
author='Noah Levitt',
author_email='nlevitt@archive.org',
description='Rudimentary rethinkdb python library with some smarts, perhaps some dumbs',
long_description=codecs.open(
'README.rst', mode='r', encoding='utf-8').read(),
)