Skip to content

Commit

Permalink
Merge pull request #194 from jklymak/test-pypi
Browse files Browse the repository at this point in the history
DOC: minor change to test pypi workflow
  • Loading branch information
jklymak authored Sep 22, 2024
2 parents 87f76b7 + cca3d9a commit 581a8d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,7 @@ jobs:
with:
python-version: "3.x"
- name: Install pypa/build
run: >-
python3 -m
pip install
build
--user
run: python3 -m pip install build --user
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
Expand Down
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"gsw",
"scipy",
"bitstring",
"pooch"
"pooch",
"polars"
],
license='Apache',
extras_require={
Expand All @@ -25,5 +26,7 @@
"docs": ["pydata-sphinx-theme", "numpydoc", "autoapi", "myst-parser",
"sphinx"]
},
zip_safe=True
zip_safe=True,
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
)

0 comments on commit 581a8d5

Please sign in to comment.