Skip to content

Commit

Permalink
Enhance setup.py with find_packages 📦
Browse files Browse the repository at this point in the history
Incorporated the use of `find_packages` in `setup.py` to automatically discover all packages and subpackages. This change will ensure that all relevant code is included when the package is installed, enhancing the user experience and the overall functionality of the AI-powered tool. 🚀
  • Loading branch information
TechNickAI committed Jul 22, 2023
1 parent a151cf3 commit 36a9897
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from aicodebot import version
from pathlib import Path
from setuptools import setup
from setuptools import setup, find_packages

# Pull in the long description from the README
long_description = Path("README.md").read_text(encoding="utf-8")
Expand All @@ -26,6 +26,7 @@
"aicodebot = aicodebot.cli:cli",
],
},
packages=find_packages(include=['aicodebot', 'aicodebot.*']),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 36a9897

Please sign in to comment.