1
Fork 0
mirror of https://github.com/RGBCube/JsonWrapper synced 2025-07-27 03:37:44 +00:00
JsonWrapper/setup.py
2023-04-28 22:45:48 +03:00

14 lines
437 B
Python

from pathlib import Path
from setuptools import setup
setup(
name="json_wrapper",
description="Easy to use JSON wrapper packed with features.",
long_description=(Path(__file__).parent / "README.md").read_text(),
long_description_content_type='text/markdown',
url="https://github.com/RGBCube/json_wrapper",
version="1.3.0",
author="RGBCube",
py_modules=["json_wrapper"],
license="CC0 1.0 Universal"
)