-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
29 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/sh | ||
# build the library | ||
./build_lib.sh | ||
# get latest version of 'twine' | ||
python3 -m pip install --upgrade twine | ||
if [ $# -eq 0 ] | ||
then | ||
echo "Publishing to test.pypi. If you want to publish for real, use the argument 'notest'" | ||
# publish to test.pypi | ||
twine upload -r testpypi dist/* | ||
elif [ $1 = notest ] | ||
then | ||
echo "Publishing to pypi." | ||
twine upload dist/* | ||
else | ||
echo "Unexpected argument $1" | ||
echo "For publishing to pypu use 'notest', or provide no argument to publish to test.pypi." | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,15 @@ requires = ["setuptools>=62.6"] | |
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "UADAPy" | ||
version = "0.0.3" | ||
name = "uadapy" | ||
version = "0.0.1" | ||
description = "A software package for uncertainty-aware data analysis with Python" | ||
authors = [ | ||
{ name = "David Hägele", email = "[email protected]"}, | ||
{ name = "Marina Evers", email = "[email protected]"}, | ||
{ name = "Patrick Paetzold", email = "[email protected]"}, | ||
{ name = "Ruben Bauer", email = "[email protected]"}, | ||
{ name = "Nikhil Bhavikatti", email = "[email protected]"}, | ||
{ name = "David Hägele"}, | ||
{ name = "Marina Evers"}, | ||
{ name = "Patrick Paetzold"}, | ||
{ name = "Ruben Bauer"}, | ||
{ name = "Nikhil Bhavikatti"}, | ||
] | ||
license = { file = "LICENSE" } | ||
readme = "README.md" | ||
|