1
0
mirror of https://github.com/internetarchive/warcprox.git synced 2025-01-18 13:22:09 +01:00
2017-02-21 16:27:49 -08:00

22 lines
695 B
Python

import setuptools
import codecs
setuptools.setup(
name='rethinkstuff',
version='0.2.0.dev58',
packages=['rethinkstuff'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
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(),
)