Skip to content

Commit 120cae0

Browse files
committed
Fix packaging issues
1 parent 317e0ca commit 120cae0

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ jobs:
3232
python-version: ${{ matrix.python-version }}
3333
- name: Install dependencies
3434
run: |
35-
python -m pip install --upgrade pip
35+
pip install --upgrade pip
3636
pip install .
37+
- name: Verify installation
38+
run: |
39+
ls -la $(python -c "import site; print(site.getsitepackages()[0])")/AA_stat
3740
- name: Lint with flake8
3841
run: |
3942
pip install flake8

MANIFEST.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
include AA_stat/report.template
2+
include AA_stat/open_search.params
3+
include AA_stat/default.cfg
4+
include AA_stat/unimod.xml

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Documentation = "https://github.com/SimpleNumber/aa_stat"
2727
"Issue Tracker" = "https://github.com/SimpleNumber/aa_stat/issues"
2828

2929
[tool.setuptools]
30-
packages = ["AA_stat"]
30+
packages = ["AA_stat", "AA_stat.gui"]
3131

3232
[tool.setuptools.dynamic]
3333
version = {attr = "AA_stat.version.__version__"}

0 commit comments

Comments
 (0)