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