Skip to content

Commit 6ddaa60

Browse files
authored
Merge pull request #82 from AdmGenSameer/copilot/update-pyproject-toml
Fix package installation by adding setuptools configuration to pyproject.toml
2 parents 27c4ad4 + e0f5dbf commit 6ddaa60

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
[build-system]
2+
requires = ["setuptools>=61.0", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
15
[project]
26
name = "archpkg"
37
version = "0.1.0"
@@ -16,3 +20,9 @@ dependencies = [
1620

1721
[project.scripts]
1822
archpkg = "archpkg.cli:main"
23+
24+
[tool.setuptools]
25+
packages = ["archpkg"]
26+
27+
[tool.setuptools.package-data]
28+
archpkg = ["*.yaml", "*.yml", "*.json"]

0 commit comments

Comments
 (0)