#!/usr/bin/env python3 import setuptools setuptools.setup( name="jsoncache", version='0.1', author="Felix Stupp", author_email="me+code@banananet.work", description="Utility package for caching", url="https://git.banananet.work/zocker/python-jsoncache", python_requires='>=3.6', extras_require={ "XDG": ["pyxdg >=0.25"], }, packages=[ "jsoncache", ], classifiers = [ "Development Status :: 3 - Alpha", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3 :: Only", "Topic :: Utilities", ], )