Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
userpj committed Nov 7, 2024
1 parent 06bb124 commit 036c1f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@
with open('requirements.txt') as f:
requirements = f.read().splitlines()

packages = find_packages()
packages = [p.replace("python", "appbuilder") for p in find_packages()]
package_data = {}

for package in packages:
if package.startswith('appbuilder.utils'):
package_data[package] = ["*.md"]
Expand All @@ -45,6 +46,7 @@
author_email="[email protected]",
packages=packages,
package_data=package_data,
package_dir={"appbuilder": "python"},
install_requires=requirements,
python_requires=">=3.9",
extras_require={
Expand Down

0 comments on commit 036c1f7

Please sign in to comment.