11 lines
311 B
Python
11 lines
311 B
Python
from distutils.core import setup
|
|
|
|
setup(name='deadsimplekv',
|
|
version='0.2.0',
|
|
description='Very simple key-value store for Python',
|
|
author='Kevin Froman',
|
|
author_email='beardog@mailbox.org',
|
|
url='https://github.com/beardog108/deadsimplekv',
|
|
packages=['deadsimplekv'],
|
|
)
|