Skip to content

Commit

Permalink
Fix metadata and create build/publish scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
brandones committed May 29, 2024
1 parent 81efcde commit 74d053a
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
3 changes: 3 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash

python3 setup.py sdist
8 changes: 8 additions & 0 deletions publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/bin/bash

# fail on non-zero exit code
set -e

twine check dist/*

twine upload --skip-existing dist/*
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
description-file = README.rst
description_file = README.rst

[wheel]
universal = 1

0 comments on commit 74d053a

Please sign in to comment.