1
Fork 0
mirror of https://github.com/RGBCube/JsonWrapper synced 2025-07-27 11:47:45 +00:00

Add files via upload

This commit is contained in:
RGBCube 2022-01-26 22:14:06 +03:00 committed by GitHub
parent 6b46cf3fee
commit bb1539cced
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 137 additions and 22 deletions

15
setup.py Normal file
View file

@ -0,0 +1,15 @@
from setuptools import setup
readme = ""
with open("README.md") as file:
readme = file.read()
setup(
name="json_wrapper",
description="Easy JSON wrapper packed with features",
url="https://github.com/RGBCube/json_wrapper",
version="1.0",
author="RGBCube",
py_modules=["json_wrapper"],
license="CC0 1.0 Universal"
)