Skip to content

Commit

Permalink
Use find_packages in setup.py (IDSIA#847)
Browse files Browse the repository at this point in the history
  • Loading branch information
thequilo committed Oct 8, 2021
1 parent 20334f8 commit 65c04d9
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 @@
from pathlib import Path

from setuptools import setup
from setuptools import setup, find_packages
import os

classifiers = """
Expand Down Expand Up @@ -35,7 +35,7 @@
author=about["__author__"],
author_email=about["__author_email__"],
url=about["__url__"],
packages=["sacred", "sacred.observers", "sacred.config", "sacred.stflow"],
packages=find_packages(include=["sacred", "sacred.*"]),
package_data={"sacred": [os.path.join("data", "*")]},
scripts=[],
install_requires=Path("requirements.txt").read_text().splitlines(),
Expand Down

0 comments on commit 65c04d9

Please sign in to comment.