warcprox/setup.py
2015-10-30 19:51:50 +00:00

14 lines
322 B
Python

import setuptools
setuptools.setup(
name='rethinkstuff',
version='0.1',
packages=['rethinkstuff'],
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
install_requires=['rethinkdb'],
)