2020-03-28 05:03:16 +00:00
|
|
|
from setuptools import setup, find_packages
|
2019-03-01 06:06:28 +00:00
|
|
|
|
2019-06-11 00:01:08 +00:00
|
|
|
setup(name='deadsimplekv',
|
2020-07-24 19:53:18 +00:00
|
|
|
version='0.3.2',
|
2019-03-01 06:06:28 +00:00
|
|
|
description='Very simple key-value store for Python',
|
|
|
|
author='Kevin Froman',
|
2019-06-11 00:01:08 +00:00
|
|
|
author_email='beardog@mailbox.org',
|
2019-03-01 06:06:28 +00:00
|
|
|
url='https://github.com/beardog108/deadsimplekv',
|
2020-03-28 05:03:16 +00:00
|
|
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
|
|
|
install_requires=[],
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2019-03-01 17:21:26 +00:00
|
|
|
)
|