Skip to content

Commit

Permalink
fix(version): fixes sub packages not being included in the packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Jan 8, 2025
1 parent d1cdae5 commit 4e8296d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["hot_fair_utilities"]


[project]
name = "hot-fair-utilities"
version = "2.0.6"
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
from setuptools import setup
# Third party imports
from setuptools import find_packages, setup

setup()
setup(
package_dir={"": "."},
packages=find_packages(include=["hot_fair_utilities", "hot_fair_utilities.*"]),
include_package_data=True,
)

0 comments on commit 4e8296d

Please sign in to comment.