mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
22 lines
651 B
Python
22 lines
651 B
Python
import setuptools
|
|
import codecs
|
|
|
|
setuptools.setup(
|
|
name='doublethink',
|
|
version='0.2.0.dev78',
|
|
packages=['doublethink'],
|
|
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/internetarchive/doublethink',
|
|
author='Noah Levitt',
|
|
author_email='nlevitt@archive.org',
|
|
description='rethinkdb python library',
|
|
long_description=codecs.open(
|
|
'README.rst', mode='r', encoding='utf-8').read(),
|
|
)
|