Fix broken installation
Changes the setuptools config to install all subpackages, not just the top level mft package. Fixes #2.
This commit is contained in:
@@ -21,8 +21,9 @@ build-backend = "setuptools.build_meta"
|
|||||||
[project.scripts]
|
[project.scripts]
|
||||||
mft = "mft.cli:main"
|
mft = "mft.cli:main"
|
||||||
|
|
||||||
[tool.setuptools]
|
[tool.setuptools.packages.find]
|
||||||
packages = ["mft"]
|
where = ["."]
|
||||||
|
include = ["mft*"]
|
||||||
|
|
||||||
[tool.setuptools.package-data]
|
[tool.setuptools.package-data]
|
||||||
mft = ["static/*", "schema/*"]
|
mft = ["static/*", "schema/*"]
|
||||||
|
|||||||
Reference in New Issue
Block a user