Llama-3.1-8B-DALv0.1
/
venv
/lib
/python3.12
/site-packages
/jupyterlab
/tests
/mock_packages
/extension
/setup.py
# Copyright (c) Jupyter Development Team. | |
# Distributed under the terms of the Modified BSD License. | |
import json | |
import os.path as osp | |
name = "mock-package" | |
HERE = osp.abspath(osp.dirname(__file__)) | |
with open(osp.join(HERE, "package.json")) as fid: | |
data = json.load(fid) | |
from setuptools import setup # noqa | |
setup(name=name, version=data["version"], py_modules=[name]) | |