Skip to content

Commit

Permalink
Merge pull request #13 from josuemtzmo/distribution
Browse files Browse the repository at this point in the history
fix: add long description for pypi
  • Loading branch information
josuemtzmo committed Mar 16, 2023
2 parents cd78792 + a2709e3 commit d233418
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-test-pypi.yml
Expand Up @@ -30,7 +30,7 @@ jobs:
--outdir dist/
.
- name: Publish distribution 📦 to Test PyPI
uses: pypa/gh-action-pypi-publish@master
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
Expand Down
8 changes: 7 additions & 1 deletion setup.py
@@ -1,5 +1,9 @@
from setuptools import setup, find_packages

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name='xarrayMannKendall',
version='1.4.3',
Expand All @@ -11,4 +15,6 @@
packages=find_packages(),
install_requires=[],
zip_safe=False,
)
long_description=long_description,
long_description_content_type='text/markdown'
)

0 comments on commit d233418

Please sign in to comment.