-
Notifications
You must be signed in to change notification settings - Fork 0
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 #57 from hephy-dd/devel-0.11.x
0.11.0
- Loading branch information
Showing
22 changed files
with
898 additions
and
170 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
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
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,41 @@ | ||
; Inno Setup template | ||
|
||
#ifndef Version | ||
#error The define variable Version is not set! Use /D Version=value to set it. | ||
#endif | ||
|
||
#define Organization "HEPHY" | ||
#define Name "SQC" | ||
#define ExeName "sqc.exe" | ||
|
||
[Setup] | ||
AppId={#Organization}_{#Name}_{#Version} | ||
AppName={#Name} | ||
AppVersion={#Version} | ||
AppPublisher=HEPHY Detector Development | ||
AppPublisherURL=https://github.com/hephy-dd/ | ||
DefaultDirName={userappdata}\{#Organization}\sqc\{#Version} | ||
DefaultGroupName={#Name} | ||
OutputDir=dist | ||
OutputBaseFilename=sqc-{#Version}-win-x64-setup | ||
SetupIconFile=src\sqc\assets\icons\sqc.ico | ||
UninstallDisplayIcon={app}\{#ExeName} | ||
Compression=lzma | ||
SolidCompression=yes | ||
PrivilegesRequired=lowest | ||
|
||
[Files] | ||
Source: "dist\sqc\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs | ||
|
||
[Icons] | ||
Name: "{userdesktop}\{#Name} {#Version}"; Filename: "{app}\{#ExeName}" | ||
Name: "{group}\{#Name} {#Version}"; Filename: "{app}\{#ExeName}"; WorkingDir: "{app}" | ||
|
||
[Run] | ||
Filename: "{app}\{#ExeName}"; Description: "{cm:LaunchProgram,{#Name} {#Version}}"; Flags: nowait postinstall skipifsilent | ||
|
||
[UninstallDelete] | ||
Type: filesandordirs; Name: "{app}" | ||
|
||
[UninstallRun] | ||
Filename: "{app}\uninstall.exe" |
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,16 @@ | ||
[mypy] | ||
|
||
[mypy-pyueye.*] | ||
ignore_missing_imports = True | ||
|
||
[mypy-pint.*] | ||
ignore_missing_imports = True | ||
|
||
[mypy-scipy.*] | ||
ignore_missing_imports = True | ||
|
||
[mypy-schema.*] | ||
ignore_missing_imports = True | ||
|
||
[mypy-comet.*] | ||
ignore_missing_imports = True |
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
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,3 +1,39 @@ | ||
[project] | ||
name = "sqc" | ||
description = "Sensor Quality Control" | ||
readme = "README.md" | ||
authors = [ | ||
{name = "Bernhard Arnold", email = "bernhard.arnold@oeaw.ac.at"}, | ||
] | ||
requires-python = ">=3.9" | ||
dependencies = [ | ||
"comet @ git+https://github.com/hephy-dd/comet.git@main", | ||
"PyQt5==5.15.10", | ||
"PyQtChart==5.15.6", | ||
"PyYAML==6.0.1", | ||
"numpy==1.26.4", | ||
"scipy==1.12.0", | ||
"schema==0.7.5", | ||
"pyueye==4.95.0", | ||
] | ||
dynamic = ["version"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/hephy-dd/sqc" | ||
Documentation = "https://hephy-dd.github.io/sqc/" | ||
|
||
[project.scripts] | ||
sqc = "sqc.__main__:main" | ||
|
||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools] | ||
include-package-data = true | ||
|
||
[tool.setuptools.packages.find] | ||
where = ["src"] | ||
|
||
[tool.setuptools.package-data] | ||
"sqc.assets.icons" = ["*.svg", "*.png", "*.ico"] |
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 +1 @@ | ||
__version__ = "0.10.2" | ||
__version__ = "0.11.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
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
Oops, something went wrong.