File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change
1
+ # This workflow will install Python dependencies, run tests and lint with a single version of Python
2
+ # For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
3
+
4
+ name : Publish to PyPI
5
+
6
+ on :
7
+ push :
8
+ tags : " *"
9
+
10
+ jobs :
11
+ build :
12
+ runs-on : ubuntu-latest
13
+
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+
17
+ - name : Publish package
18
+ uses : pypa/gh-action-pypi-publish@release/v1
19
+ with :
20
+ user : __token__
21
+ password : ${{ secrets.PYPI_PASSWORD }}
22
+
Original file line number Diff line number Diff line change 5
5
6
6
[metadata]
7
7
name = SewerRat
8
- description = Add a short description here!
8
+ description = Python client for the SewerRat API
9
9
author = LTLA
10
10
author_email = infinite.monkeys.with.keyboards@gmail.com
11
11
license = MIT
You can’t perform that action at this time.
0 commit comments