Skip to content

Commit

Permalink
or wrong find_packages logic
Browse files Browse the repository at this point in the history
  • Loading branch information
dbogunowicz committed Apr 19, 2024
1 parent 71a5627 commit bff9cfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

def _setup_packages() -> List:
return find_packages(
"src", include=["compressed-tensors", "compressed-tensors.*"], exclude=["*.__pycache__.*"]
"src", include=["compressed_tensors", "compressed_tensors.*"], exclude=["*.__pycache__.*"]
)

def _setup_install_requires() -> List:
Expand All @@ -29,7 +29,7 @@ def _setup_extras() -> Dict:

setup(
name="compressed-tensors",
#version="0.3.0",
version="0.3.0",
author="Neuralmagic, Inc.",
author_email="support@neuralmagic.com",
description="Library for utilization of compressed safetensors of neural network models",
Expand Down

0 comments on commit bff9cfe

Please sign in to comment.