warcprox/setup.py

22 lines
646 B
Python
Raw Normal View History

2015-09-16 00:35:18 +00:00
import setuptools
import codecs
2015-09-16 00:35:18 +00:00
setuptools.setup(
name='rethinkstuff',
version='0.2.0.dev61',
packages=['rethinkstuff'],
2015-09-16 00:35:18 +00:00
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
2015-10-30 19:51:50 +00:00
'Programming Language :: Python :: 3.5',
2017-02-17 17:23:53 -08:00
'Programming Language :: Python :: 3.6',
2015-09-16 00:35:18 +00:00
],
install_requires=['rethinkdb'],
2015-10-30 20:03:34 +00:00
url='https://github.com/nlevitt/rethinkstuff',
author='Noah Levitt',
author_email='nlevitt@archive.org',
description='rethinkdb python library',
long_description=codecs.open(
'README.rst', mode='r', encoding='utf-8').read(),
2015-09-16 00:35:18 +00:00
)