deadsimplekv/setup.py

11 lines
311 B
Python
Raw Normal View History

2019-03-01 05:50:06 +00:00
from distutils.core import setup
2019-06-11 00:01:08 +00:00
setup(name='deadsimplekv',
version='0.1.1',
description='Very simple key-value store for Python',
author='Kevin Froman',
2019-06-11 00:01:08 +00:00
author_email='beardog@mailbox.org',
url='https://github.com/beardog108/deadsimplekv',
packages=['deadsimplekv'],
2019-03-01 17:21:26 +00:00
)