Skip to content

Commit

Permalink
fix: update package configuration for correct imports
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewcasale committed Dec 14, 2024
1 parent c2626c0 commit 0d92ae5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup, find_packages
from setuptools import setup, find_namespace_packages

setup(
name="repominify",
Expand All @@ -10,15 +10,15 @@
long_description_content_type="text/markdown",
url="https://github.com/mikewcasale/repominify",
package_dir={"": "src"},
packages=find_packages(where="src", exclude=["tests", "tests.*"]),
packages=find_namespace_packages(where="src", include=["*"]),
python_requires=">=3.7",
install_requires=[
"networkx>=2.6.0",
"pyyaml>=5.1.0",
],
entry_points={
"console_scripts": [
"repominify=cli:main",
"repominify=core.cli:main",
],
},
classifiers=[
Expand Down

0 comments on commit 0d92ae5

Please sign in to comment.