newportxps 0.3.0__tar.gz → 2025.1.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.
- newportxps-2025.1.0/.gitignore +16 -0
- newportxps-2025.1.0/LICENSE +21 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/PKG-INFO +10 -9
- newportxps-2025.1.0/examples/stages_XPSC.ini +1799 -0
- newportxps-2025.1.0/examples/stages_XPSD.ini +514 -0
- newportxps-2025.1.0/examples/system_exA.ini +99 -0
- newportxps-2025.1.0/examples/system_exB.ini +65 -0
- newportxps-2025.1.0/examples/system_exC.ini +67 -0
- newportxps-2025.1.0/examples/system_exD.ini +59 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps/XPS_C8_drivers.py +279 -879
- newportxps-2025.1.0/newportxps/__init__.py +3 -0
- newportxps-2025.1.0/newportxps/debugtimer.py +107 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps/ftp_wrapper.py +37 -13
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps/newportxps.py +367 -166
- newportxps-2025.1.0/newportxps/version.py +34 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps.egg-info/PKG-INFO +10 -9
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps.egg-info/SOURCES.txt +9 -0
- newportxps-2025.1.0/newportxps.egg-info/requires.txt +2 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/pyproject.toml +18 -9
- newportxps-0.3.0/LICENSE +0 -25
- newportxps-0.3.0/newportxps/__init__.py +0 -1
- newportxps-0.3.0/newportxps.egg-info/requires.txt +0 -1
- {newportxps-0.3.0 → newportxps-2025.1.0}/README.md +0 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps/debugtime.py +0 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps/utils.py +0 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps.egg-info/dependency_links.txt +0 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/newportxps.egg-info/top_level.txt +0 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/setup.cfg +0 -0
- {newportxps-0.3.0 → newportxps-2025.1.0}/setup.py +0 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
The MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Matthew Newville, The University of Chicago
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
9
|
+
of the Software, and to permit persons to whom the Software is furnished to do
|
|
10
|
+
so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXP80RESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE qUSE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,25 +1,24 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: newportxps
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2025.1.0
|
|
4
4
|
Summary: Python interface to Newport XPS motion controllers
|
|
5
5
|
Author-email: Matthew Newville <newville@cars.uchicago.edu>
|
|
6
|
-
License:
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/pyepics/newportxps/
|
|
7
8
|
Keywords: motion control,data collection
|
|
8
9
|
Classifier: Development Status :: 5 - Production/Stable
|
|
9
10
|
Classifier: Intended Audience :: Developers
|
|
10
11
|
Classifier: Intended Audience :: Education
|
|
11
12
|
Classifier: Intended Audience :: Other Audience
|
|
12
13
|
Classifier: Intended Audience :: Science/Research
|
|
13
|
-
Classifier: License :: OSI Approved :: BSD License
|
|
14
14
|
Classifier: Operating System :: OS Independent
|
|
15
15
|
Classifier: Programming Language :: Python
|
|
16
16
|
Classifier: Programming Language :: Python :: 3
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
19
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
20
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
21
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
-
Classifier: Programming Language :: Python ::
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
22
|
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
24
23
|
Classifier: Topic :: Education
|
|
25
24
|
Classifier: Topic :: Scientific/Engineering
|
|
@@ -28,10 +27,12 @@ Classifier: Topic :: Software Development
|
|
|
28
27
|
Classifier: Topic :: Software Development :: Libraries
|
|
29
28
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
30
29
|
Classifier: Topic :: Utilities
|
|
31
|
-
Requires-Python: >=3.
|
|
30
|
+
Requires-Python: >=3.10
|
|
32
31
|
Description-Content-Type: text/markdown
|
|
33
32
|
License-File: LICENSE
|
|
34
|
-
Requires-Dist:
|
|
33
|
+
Requires-Dist: paramiko
|
|
34
|
+
Requires-Dist: numpy
|
|
35
|
+
Dynamic: license-file
|
|
35
36
|
|
|
36
37
|
# newportxps
|
|
37
38
|
|