Skip to content

Commit

Permalink
publish to PyPI and conda
Browse files Browse the repository at this point in the history
  • Loading branch information
fsciortino committed Dec 11, 2020
1 parent d24aadc commit 57ed337
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 7 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,9 @@ jobs:
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.TEST_PYPI_PASSWORD }}
repository_url: https://test.pypi.org/legacy/
repository_url: https://test.pypi.org/legacy/
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@master
with:
password: ${{ secrets.PYPI_PASSWORD }}
2 changes: 1 addition & 1 deletion aurora/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.1.6"
version = "0.1.7"
22 changes: 18 additions & 4 deletions meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,25 @@ requirements:
test:
imports:
- aurora
commands:
- echo Running testing from meta.yaml
- python examples/basic.py


about:
home: https://github.com/fsciortino/aurora
license_file: USER_AGREEMENT.txt
summary: modern toolbox for impurity transport, neutrals and radiation modeling in fusion plasmas
summary: 'Modern toolbox for impurity transport, neutrals and radiation modeling in fusion plasmas'
description: |
Aurora is a package to simulate heavy-ion transport and radiation in magnetically-confined plasmas.
It offers a 1.5D impurity transport forward model inheriting from the historical STRAHL code,
with which it has been thoroughly benchmarked. Routines to analyze neutral states of hydrogen
isotopes, both from the edge of fusion plasmas and from neutral beam injection, allow integration
of impurity and neutral transport analysis. Aurora’s code is mostly written in Python 3 and
Fortran 90, with a Julia interface also recently added. The package enables radiation calculations
using ADAS atomic rates, which can easily be applied to the output of Aurora’s own forward model,
or coupled with other 1D, 2D or 3D transport codes.
doc_url: https://aurora-fusion.readthedocs.io/
dev_url: https://github.com/fsciortino/aurora


extra:
recipe-maintainers:
- fsciortino
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

setup(
name=package_name,
version='0.1.6',
version='0.1.7',
description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/fsciortino/Aurora',
Expand Down

0 comments on commit 57ed337

Please sign in to comment.