Add version file

This commit is contained in:
Eren Dogan
2023-02-07 10:30:48 -08:00
parent aea39e8c82
commit 78e84ee8df
5 changed files with 17 additions and 13 deletions
+13
View File
@@ -48,8 +48,21 @@ with open("requirements.txt") as f:
reqs = f.read().splitlines()
# Read version from file
version = open("VERSION", "r").read().rstrip()
# Call the setup to create the package
setup(
name="openram",
version=version,
description="An open-source static random access memory (SRAM) compiler",
url="https://openram.org/",
author="Matthew Guthaus",
author_email="[email protected]",
keywords=[ "sram", "magic", "gds", "netgen", "ngspice", "netlist" ],
readme="README.md",
license="BSD-3",
packages=packages,
package_dir=package_dir,
include_package_data=True,