-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src layout and autopublih on release
- Loading branch information
Showing
21 changed files
with
103 additions
and
143 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# This workflow will upload a Python Package using Twine when a release is created | ||
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries | ||
|
||
name: Upload Python Package | ||
|
||
on: | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install setuptools wheel twine toml | ||
- name: Build and publish | ||
env: | ||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }} | ||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }} | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
twine upload dist/* |
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 |
---|---|---|
@@ -1,12 +1,48 @@ | ||
# PyMoDAQ National Instrument DAQmx Plugin | ||
pymodaq_plugins_daqmx (National Instrument DAQmx) | ||
################################################# | ||
|
||
PyMoDAQ, Modular Data Acquisition with Python, is a set of **python** modules used to perform automated | ||
measurements. This repository contains the NI DAQmx plugins compatible with PyMoDAQ to generate and acquire | ||
signals using National Instruments acquisition cards | ||
.. image:: https://img.shields.io/pypi/v/pymodaq_plugins_daqmx.svg | ||
:target: https://pypi.org/project/pymodaq_plugins_daqmx/ | ||
:alt: Latest Version | ||
|
||
PyMoDAQ repo: https://github.com/CEMES-CNRS | ||
Plugin repo: https://github.com/CEMES-CNRS/pymodaq_plugins_daqmx | ||
.. image:: https://readthedocs.org/projects/pymodaq/badge/?version=latest | ||
:target: https://pymodaq.readthedocs.io/en/stable/?badge=latest | ||
:alt: Documentation Status | ||
|
||
.. image:: https://github.com/CEMES-CNRS/pymodaq_plugins_daqmx/workflows/Upload%20Python%20Package/badge.svg | ||
:target: https://github.com/CEMES-CNRS/pymodaq_plugins_daqmx | ||
|
||
Plugin devoted to the National Instrument signal acquisition and generation using the NiDAQmx library. Includes an | ||
actuator plugin for signal generation, a 1D viewer plugin for data acquisition as a function of time and a 0D viewer | ||
plugin for quick time averaging acquisition | ||
|
||
Authors | ||
======= | ||
|
||
* Sébastien J. Weber | ||
|
||
Contributors | ||
============ | ||
|
||
* Amelie Jarnac | ||
|
||
Instruments | ||
=========== | ||
Below is the list of instruments included in this plugin | ||
|
||
Actuators | ||
+++++++++ | ||
|
||
* **DAQmx**: Analog output DC, Sinus, Ramp... | ||
|
||
Viewer0D | ||
++++++++ | ||
|
||
* **DAQmx**: Analog acquisition, Counting | ||
|
||
Viewer1D | ||
++++++++ | ||
|
||
* **DAQmx**: Analog acquisition | ||
|
||
Documentation: http://pymodaq.cnrs.fr/ | ||
|
||
For an exhaustive list of the available plugins, see https://github.com/CEMES-CNRS/pymodaq_plugin_manager/blob/main/pymodaq_plugin_manager/doc/PluginList.md |
This file was deleted.
Oops, something went wrong.
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,15 @@ | ||
## To modify by developper(s) of the plugin | ||
|
||
[plugin-info] | ||
SHORT_PLUGIN_NAME = 'daqmx' #for instance daqmx | ||
package-url = 'https://github.com/CEMES-CNRS/pymodaq_plugins_daqmx' #to modify | ||
description = 'Hardware plugins for PyMoDAQ using the NiDAQmx framework (pydaqmx wrapper)' | ||
|
||
author = 'Sébastien Weber' | ||
author-email = '[email protected]' | ||
license = 'MIT' | ||
|
||
[plugin-install] | ||
#packages required for your plugin: | ||
packages-required = ['pydaqmx'] | ||
## |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
0.0.3 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.