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

Update setup.py

This commit is contained in:
RGBCube 2022-01-26 22:18:52 +03:00 committed by GitHub
parent a2f2b6ffb0
commit 979170d304
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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