mirror of
https://github.com/RGBCube/JsonWrapper
synced 2025-07-27 11:47:45 +00:00
Update setup.py
This commit is contained in:
parent
a2f2b6ffb0
commit
979170d304
1 changed files with 5 additions and 4 deletions
9
setup.py
9
setup.py
|
@ -1,15 +1,16 @@
|
|||
from setuptools import setup
|
||||
from pathlib import Path
|
||||
|
||||
readme = ""
|
||||
with open("README.md") as file:
|
||||
readme = file.read()
|
||||
this_directory = Path(__file__).parent
|
||||
long_description = (this_directory / "README.md").read_text()
|
||||
|
||||
setup(
|
||||
name="json_wrapper",
|
||||
description="Easy JSON wrapper packed with features",
|
||||
long_description=long_description,
|
||||
url="https://github.com/RGBCube/json_wrapper",
|
||||
version="1.0",
|
||||
author="RGBCube",
|
||||
py_modules=["json_wrapper"],
|
||||
license="CC0 1.0 Universal"
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue