Use find_packages() in setup

This commit is contained in:
Harshal Sheth 2021-02-11 10:34:19 -08:00 committed by Shirshanka Das
parent becc953f6e
commit 75b01806ef
3 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ setuptools.setup(
],
python_requires=">=3.7",
package_dir={"": "src"},
packages=["gometa", "gometa.configuration"],#TODO: Are these the right components?
packages=setuptools.find_packages(where='./src'),
include_package_data=True,
package_data={"gometa": ["py.typed"]},
entry_points={

View File