Skip to content

Commit

Permalink
fix: encourage pip to include frontend dist folder (#648)
Browse files Browse the repository at this point in the history
fix: include frontend only in dist.
  • Loading branch information
james-encord authored Sep 19, 2023
1 parent c55d061 commit ee77871
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,19 @@ keywords = [
readme = "README.md"
repository = "https://github.com/encord-team/encord-active"

include = ['.env', "src/encord_active/frontend/dist/**/*"]

exclude = ['src/encord_active/frontend/**/*']
include = [".env", "src/encord_active/frontend/dist/**/*"]

exclude = [
"src/encord_active/frontend/*.json",
"src/encord_active/frontend/.*",
"src/encord_active/frontend/*.html",
"src/encord_active/frontend/*.ts",
"src/encord_active/frontend/*.cjs",
"src/encord_active/frontend/assets/**/*",
"src/encord_active/frontend/public/**/*",
"src/encord_active/frontend/src/**/*",
"src/encord_active/frontend/node_modules/**/*"
]

packages = [{ include = "encord_active", from = "src" }]

Expand Down
Empty file.

0 comments on commit ee77871

Please sign in to comment.