1
Fork 0
mirror of https://github.com/RGBCube/JsonWrapper synced 2025-07-27 11:47:45 +00:00
JsonWrapper/setup.py
RGBCube ce46461b22
L
2022-01-26 22:31:36 +03:00

17 lines
505 B
Python

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