You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
743 B
Python

#!/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",
],
)