Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/klemengit/LadiskDAQ
Browse files Browse the repository at this point in the history
  • Loading branch information
TKosir committed Nov 16, 2023
2 parents bbc28ab + b84e287 commit 943aadf
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Publish to PyPI
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: Install dependencies
run: pip install setuptools wheel twine build

- name: Build package
run: python -m build

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.4.2
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
File renamed without changes.
2 changes: 1 addition & 1 deletion LDAQ/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.0.0"
__version__ = "1.0.3"
from .utils import *
from .core import Core
from .visualization import *
Expand Down
14 changes: 12 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
Project Description
===================
LDAQ
====

Data acquisition and generation with live visualization.

.. image:: /docs/source/getting_started.gif
:alt: demo_gif

Installation
============

The package can be installed from PyPI using pip:
.. code-block::
pip install LDAQ
Getting started
===============

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "LDAQ"
version = "1.0.0"
version = "1.0.3"
authors = [{name = "Tilen Košir, Klemen Zaletelj, Janko Slavič", email = "janko.slavic@fs.uni-lj.si"}]
maintainers = [{name = "Tilen Košir, Klemen Zaletelj", email = "klemen.zaletelj@fs.uni-lj.si"}]
license = "MIT"
Expand Down

0 comments on commit 943aadf

Please sign in to comment.