ddsctrl 0.5.1__tar.gz → 0.7.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ddsctrl-0.7.0/LICENSE.txt +17 -0
- ddsctrl-0.7.0/PKG-INFO +26 -0
- ddsctrl-0.7.0/bin/ddscontroller +707 -0
- ddsctrl-0.5.1/ddsctrl/ddsctrlui.py → ddsctrl-0.7.0/ddsctrl/ad9912ui.py +46 -78
- ddsctrl-0.7.0/ddsctrl/ad9915ui.py +245 -0
- ddsctrl-0.7.0/ddsctrl/constants.py +36 -0
- ddsctrl-0.7.0/ddsctrl/ddsctrlui.py +126 -0
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/ddsctrl/version.local.py +0 -0
- ddsctrl-0.7.0/ddsctrl/version.py +12 -0
- ddsctrl-0.7.0/ddsctrl.egg-info/PKG-INFO +26 -0
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/ddsctrl.egg-info/SOURCES.txt +4 -0
- ddsctrl-0.7.0/ddsctrl.egg-info/requires.txt +3 -0
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/setup.py +7 -5
- ddsctrl-0.5.1/PKG-INFO +0 -17
- ddsctrl-0.5.1/bin/ddscontroller +0 -491
- ddsctrl-0.5.1/ddsctrl/constants.py +0 -28
- ddsctrl-0.5.1/ddsctrl/version.py +0 -5
- ddsctrl-0.5.1/ddsctrl.egg-info/PKG-INFO +0 -17
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/MANIFEST.in +0 -0
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/README +0 -0
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/ddsctrl/__init__.py +0 -0
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/ddsctrl.egg-info/dependency_links.txt +0 -0
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/ddsctrl.egg-info/top_level.txt +0 -0
- {ddsctrl-0.5.1 → ddsctrl-0.7.0}/setup.cfg +0 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Benoit Dubois
|
|
2
|
+
Copyright (C) 2019 FEMTO Engineering
|
|
3
|
+
benoit.dubois@femto-st.fr
|
|
4
|
+
|
|
5
|
+
This program is free software; you can redistribute it and/or
|
|
6
|
+
modify it under the terms of the GNU Lesser General Public
|
|
7
|
+
License as published by the Free Software Foundation; either
|
|
8
|
+
version 3 of the License, or (at your option) any later version.
|
|
9
|
+
|
|
10
|
+
This program is distributed in the hope that it will be useful,
|
|
11
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
12
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
13
|
+
Lesser General Public License for more details.
|
|
14
|
+
|
|
15
|
+
You should have received a copy of the GNU Lesser General Public License
|
|
16
|
+
along with this program; if not, write to the Free Software Foundation,
|
|
17
|
+
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
ddsctrl-0.7.0/PKG-INFO
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ddsctrl
|
|
3
|
+
Version: 0.7.0
|
|
4
|
+
Summary: ddscontroller allow basic handling of AD9912 and AD9915 DDS development board.
|
|
5
|
+
Home-page: https://gitlab.com/bendub/ddsctrl
|
|
6
|
+
Author: Benoit Dubois
|
|
7
|
+
Author-email: benoit.dubois@femto-engineering.fr
|
|
8
|
+
License: LGPL-3.0-or-later
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
13
|
+
Classifier: Programming Language :: Python
|
|
14
|
+
Classifier: Topic :: Scientific/Engineering
|
|
15
|
+
License-File: LICENSE.txt
|
|
16
|
+
Requires-Dist: PyQt5
|
|
17
|
+
Requires-Dist: ad9xdds
|
|
18
|
+
Requires-Dist: signalslot
|
|
19
|
+
Dynamic: author
|
|
20
|
+
Dynamic: author-email
|
|
21
|
+
Dynamic: classifier
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: license
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
Dynamic: requires-dist
|
|
26
|
+
Dynamic: summary
|