Skip to content

Commit

Permalink
Fix find packages in setup.py not including sub-modules
Browse files Browse the repository at this point in the history
  • Loading branch information
iksnagreb committed Feb 8, 2024
1 parent 734e57e commit 179c73d
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
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages

# Read long description from README
with open("README.md", "r", encoding="utf-8") as file:
Expand All @@ -15,7 +15,7 @@
# Current version of the package
version="0.0.2",
# Which packages to include and from where
packages=["cs_gamestate"],
packages=find_packages(),
# Short description of the package
description="Counter-Strike Game State Integration for Python",
# Long description from README
Expand Down

0 comments on commit 179c73d

Please sign in to comment.