mirror of
https://github.com/internetarchive/warcprox.git
synced 2025-01-18 13:22:09 +01:00
12 lines
254 B
Python
12 lines
254 B
Python
import setuptools
|
|
|
|
setuptools.setup(
|
|
name='rethinkstuff',
|
|
packages=['rethinkstuff'],
|
|
classifiers=[
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3.4',
|
|
],
|
|
install_requires=['rethinkdb'],
|
|
)
|