Skip to content

Commit

Permalink
Add python sources to the wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
AleksKnezevic committed Feb 21, 2025
1 parent 6426155 commit 32a1734
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import os
import glob
from skbuild.command.install_lib import install_lib
import shutil
from setuptools import find_namespace_packages
import sys


Expand Down Expand Up @@ -40,18 +40,21 @@ def run(self):
"-DCODE_COVERAGE=ON",
]
sys.argv.remove("--code_coverage")

with open("README.md", "r") as f:
long_description = f.read()

setup(
name="tt_torch",
version="0.1",
author="Aleks Knezevic",
author_email="[email protected]",
license="Apache-2.0",
homepage="https://github.com/tenstorrent/tt-torch",
packages=[
"tt_torch",
],
packages=find_namespace_packages(include=["tt_torch.*"]),
description="TT PyTorch FrontEnd",
long_description="",
long_description=long_description,
long_description_content_type="text/markdown",
cmake_args=cmake_args,
cmdclass={
"install_lib": install_metal_libs,
Expand Down

0 comments on commit 32a1734

Please sign in to comment.