2019-03-01 05:50:06 +00:00
|
|
|
from distutils.core import setup
|
2019-03-01 06:06:28 +00:00
|
|
|
|
2019-03-01 05:50:06 +00:00
|
|
|
setup(name='deadsimplekv',
|
2019-03-01 16:40:49 +00:00
|
|
|
version='0.0.1',
|
2019-03-01 06:06:28 +00:00
|
|
|
description='Very simple key-value store for Python',
|
|
|
|
author='Kevin Froman',
|
|
|
|
author_email='beardog@firemail.cc',
|
|
|
|
url='https://github.com/beardog108/deadsimplekv',
|
|
|
|
packages=['deadsimplekv'],
|
|
|
|
)
|