AgentReview / setup.py
Yiqiao Jin
Initial Commit
bdafe83
raw
history blame contribute delete
514 Bytes
"""Sets up the project."""
import pathlib
from setuptools import setup
CWD = pathlib.Path(__file__).absolute().parent
def get_version():
"""Gets the agentreview version."""
path = CWD / "agentreview" / "__init__.py"
content = path.read_text()
for line in content.splitlines():
if line.startswith("__version__"):
return line.strip().split()[-1].strip().strip('"')
raise RuntimeError("bad version data in __init__.py")
setup(name="agentreview", version=get_version())