deadsimplekv/setup.py

11 lines
319 B
Python
Raw Normal View History

2019-03-01 05:50:06 +00:00
from distutils.core import setup
2019-03-01 17:21:26 +00:00
setup(name='deadsimplekv-beardog',
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'],
2019-03-01 17:21:26 +00:00
)