-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from DavidLutton/packaging_python
Packaging python
- Loading branch information
Showing
102 changed files
with
68 additions
and
174 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,57 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "LabToolkit" | ||
dynamic = ["version"] | ||
authors = [ | ||
{ name="David Lutton", email="david.lutton@gmail.com" }, | ||
] | ||
description = "Python package for instrument control, data acquisition and automation" | ||
readme = "README.md" | ||
requires-python = ">= 3.10" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
keywords = [ | ||
"VISA", | ||
"GPIB", | ||
"USB", | ||
"Serial", | ||
"RS232", | ||
"Measurement", | ||
"Acquisition", | ||
] | ||
|
||
dependencies = [ | ||
"pyvisa", | ||
"pandas", | ||
"numpy", | ||
] | ||
|
||
[project.optional-dependencies] | ||
VXI11 = [ | ||
"pyvisa_py", | ||
] | ||
screenshots = [ | ||
"Pillow", | ||
] | ||
[project.urls] | ||
Homepage = "https://github.com/DavidLutton/LabToolkit" | ||
Issues = "https://github.com/DavidLutton/LabToolkit/issues" | ||
|
||
[tool.hatch.version] | ||
path = "src/__about__.py" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["src"] |
0
labtoolkit/Attenuator/MI2187.py → src/Attenuator/MI2187.py
100755 → 100644
File renamed without changes.
0
labtoolkit/AudioAnalyser/HP8903B.py → src/AudioAnalyser/HP8903B.py
100755 → 100644
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.
0
labtoolkit/FieldStrength/EMC20.py → src/FieldStrength/EMC20.py
100755 → 100644
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.
File renamed without changes.
0
labtoolkit/IEEE488.py → src/IEEE488.py
100755 → 100644
File renamed without changes.
0
labtoolkit/Instrument.py → src/Instrument.py
100755 → 100644
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.
File renamed without changes.
File renamed without changes.
0
labtoolkit/PowerMeter/AgilentE4418B.py → src/PowerMeter/AgilentE4418B.py
100755 → 100644
File renamed without changes.
File renamed without changes.
0
labtoolkit/PowerMeter/HP437B.py → src/PowerMeter/HP437B.py
100755 → 100644
File renamed without changes.
0
labtoolkit/PowerMeter/MI6960.py → src/PowerMeter/MI6960.py
100755 → 100644
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
0
labtoolkit/PowerSourceDC/HP6632A.py → src/PowerSourceDC/HP6632A.py
100755 → 100644
File renamed without changes.
0
labtoolkit/PowerSourceDC/HP6674A.py → src/PowerSourceDC/HP6674A.py
100755 → 100644
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
0
labtoolkit/SCPI.py → src/SCPI.py
100755 → 100644
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.
0
labtoolkit/SignalGenerator/HP83752B.py → src/SignalGenerator/HP83752B.py
100755 → 100644
File renamed without changes.
0
labtoolkit/SignalGenerator/HP85645A.py → src/SignalGenerator/HP85645A.py
100755 → 100644
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.
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.
0
labtoolkit/Switch/HP3488A.py → src/Switch/HP3488A.py
100755 → 100644
File renamed without changes.
File renamed without changes.
0
labtoolkit/Switch/__init__.py → src/Switch/__init__.py
100755 → 100644
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
__version__ = "1.4.0" |
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