Skip to content

Commit

Permalink
release v0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hageldave committed Jul 3, 2024
1 parent 334e94a commit e3c24a2
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 9 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# UADAPy - Uncertainty-aware Data Analysis with Python
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

![Alt text](image.png)
![Teaser image](https://raw.githubusercontent.com/UniStuttgart-VISUS/uadapy/main/image.png)

UADAPy is a Python library to support an easy analysis of uncertain data.

Expand All @@ -12,8 +12,9 @@ The library provides:
## Installation
So far the library is very much work in progress, but you can already use it via pip:
```
pip install git+https://github.com/UniStuttgart-VISUS/uadapy
pip install uadapy
```

## Documentation
You can find the documentation here: https://unistuttgart-visus.github.io/uadapy/

19 changes: 19 additions & 0 deletions publish_lib.sh
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

14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit e3c24a2

Please sign in to comment.