From c8f05e241d7b077c7476fbd497c3836f5ee7b6a9 Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Thu, 2 Mar 2023 15:37:02 -0800 Subject: [PATCH] Fix twine error for PyPI --- setup.py | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 8f3fd9f2..7e2c53a2 100644 --- a/setup.py +++ b/setup.py @@ -52,14 +52,26 @@ with open("requirements.txt") as f: version = open("VERSION", "r").read().rstrip() +with open("README.md") as f: + long_description = f.read() + + # Call the setup to create the package setup( name="openram", version=version, description="An open-source static random access memory (SRAM) compiler", + long_description=long_description, + long_description_content_type="text/markdown", url="https://openram.org/", + download_url="https://github.com/VLSIDA/OpenRAM/releases", + project_urls={ + "Bug Tracker": "https://github.com/VLSIDA/OpenRAM/issues", + "Documentation": "https://github.com/VLSIDA/OpenRAM/blob/stable/docs/source/index.md", + "Source Code": "https://github.com/VLSIDA/OpenRAM", + }, author="Matthew Guthaus", - author_email="mrg@ucsc.edu", + author_email="mrg+vlsida@ucsc.edu", keywords=[ "sram", "magic", "gds", "netgen", "ngspice", "netlist" ], readme="README.md", license="BSD-3",