Skip to content

Commit

Permalink
Use setuptools.find_packages
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Oct 6, 2023
1 parent 61c0068 commit 35af796
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,6 +1,6 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import find_packages, setup
from pudb import VERSION

with open("README.rst") as readme:
Expand Down Expand Up @@ -45,7 +45,7 @@
"Topic :: Terminals",
"Topic :: Utilities",
],
packages=["pudb"],
packages=find_packages(),
entry_points={
"console_scripts": [
# Deprecated. Should really use python -m pudb.
Expand Down

0 comments on commit 35af796

Please sign in to comment.