Skip to content

Commit

Permalink
chore: use proper method in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
desilinguist committed Mar 11, 2024
1 parent d2cea05 commit 5e5e881
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,7 +1,7 @@
#!/usr/bin/env python

"""Setup script for the rsmtool package."""
from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup

# Get version without importing, which avoids dependency issues
exec(compile(open("rsmtool/version.py").read(), "rsmtool/version.py", "exec"))
Expand Down Expand Up @@ -30,7 +30,7 @@ def requirements(): # noqa: D103
maintainer="Nitin Madnani",
maintainer_email="nmadnani@ets.org",
license="Apache 2",
packages=find_packages(),
packages=find_namespace_packages(),
include_package_data=True,
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 5e5e881

Please sign in to comment.