2015-09-16 00:35:18 +00:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
setuptools.setup(
|
2015-09-21 22:17:15 +00:00
|
|
|
name='rethinkstuff',
|
2016-04-19 19:16:46 +00:00
|
|
|
version='0.1.5',
|
2015-09-21 22:17:15 +00:00
|
|
|
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',
|
2015-09-16 00:35:18 +00:00
|
|
|
],
|
2015-09-21 22:17:15 +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',
|
2015-10-30 22:28:51 +00:00
|
|
|
description='Rudimentary rethinkdb python library with some smarts, perhaps some dumbs',
|
|
|
|
long_description=open('README.rst').read(),
|
2015-09-16 00:35:18 +00:00
|
|
|
)
|