Skip to content

Commit

Permalink
Merge pull request #4 from blackary/fix-src-directory
Browse files Browse the repository at this point in the history
Fix issue with directory naming
  • Loading branch information
blackary authored Aug 31, 2022
2 parents 909914a + 2fc4743 commit 7ea4e5b
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish_PYPI_each_tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
npm --version
- name: build streamlit-keyup JS
run: |
cd src/frontend/
cd src/st_keyup/frontend/
npm install
npm run build
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
recursive-include src/frontend/build *
recursive-include src/st_keyup/frontend/build *
include README.md
include LICENSE
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/blackary/streamlit-keyup",
packages=setuptools.find_packages(),
# packages=setuptools.find_packages(),
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
classifiers=[],
python_requires=">=3.7",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7ea4e5b

Please sign in to comment.