drap 0.0.3.post1__tar.gz → 0.0.3.post5__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.
- {drap-0.0.3.post1 → drap-0.0.3.post5}/PKG-INFO +3 -3
- {drap-0.0.3.post1 → drap-0.0.3.post5}/pyproject.toml +8 -8
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap/automation.py +1 -3
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap/main.py +2 -3
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap/terminal_interface.py +1 -3
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap/utils.py +3 -4
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap.egg-info/PKG-INFO +3 -3
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap.egg-info/requires.txt +2 -2
- {drap-0.0.3.post1 → drap-0.0.3.post5}/LICENSE +0 -0
- {drap-0.0.3.post1 → drap-0.0.3.post5}/README.md +0 -0
- {drap-0.0.3.post1 → drap-0.0.3.post5}/setup.cfg +0 -0
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap/__init__.py +0 -0
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap/gui.py +3 -3
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap.egg-info/SOURCES.txt +0 -0
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap.egg-info/dependency_links.txt +0 -0
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap.egg-info/entry_points.txt +0 -0
- {drap-0.0.3.post1 → drap-0.0.3.post5}/src/drap.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: drap
|
3
|
-
Version: 0.0.3.
|
3
|
+
Version: 0.0.3.post5
|
4
4
|
Summary: Tool for analyzing droplet size and concentration using video and EDF images
|
5
5
|
Author-email: "Gabriel Braga Marques Teobaldo, Oleg Prymak, Natalie Wolff, Matthias Epple, Marco Aurélio Brizzotti Andrade, Cássio Alves and Cristiano Luis Pinto de Oliveira" <alves.casssio@gmail.com>
|
6
6
|
License: MIT
|
@@ -10,13 +10,13 @@ Keywords: saxs,x-ray,edf,opencv,pyqt5,droplet
|
|
10
10
|
Requires-Python: >=3.8
|
11
11
|
Description-Content-Type: text/markdown
|
12
12
|
License-File: LICENSE
|
13
|
-
Requires-Dist: opencv-python
|
13
|
+
Requires-Dist: opencv-python-headless>=4.9
|
14
|
+
Requires-Dist: PyQt5>=5.15
|
14
15
|
Requires-Dist: numpy
|
15
16
|
Requires-Dist: matplotlib
|
16
17
|
Requires-Dist: fabio
|
17
18
|
Requires-Dist: pillow
|
18
19
|
Requires-Dist: reportlab
|
19
|
-
Requires-Dist: PyQt5
|
20
20
|
Dynamic: license-file
|
21
21
|
|
22
22
|
# Droplet Computer program
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "drap"
|
7
|
-
version = "0.0.3.
|
7
|
+
version = "0.0.3.post5"
|
8
8
|
description = "Tool for analyzing droplet size and concentration using video and EDF images"
|
9
9
|
readme = "README.md"
|
10
10
|
license = {text = "MIT"}
|
@@ -12,13 +12,13 @@ authors = [{ name = "Gabriel Braga Marques Teobaldo, Oleg Prymak, Natalie Wolff,
|
|
12
12
|
requires-python = ">=3.8"
|
13
13
|
|
14
14
|
dependencies = [
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
15
|
+
"opencv-python-headless>=4.9",
|
16
|
+
"PyQt5>=5.15",
|
17
|
+
"numpy",
|
18
|
+
"matplotlib",
|
19
|
+
"fabio",
|
20
|
+
"pillow",
|
21
|
+
"reportlab"
|
22
22
|
]
|
23
23
|
|
24
24
|
keywords = ["saxs", "x-ray", "edf", "opencv", "pyqt5", "droplet"]
|
@@ -1,5 +1,6 @@
|
|
1
1
|
from .utils import *
|
2
2
|
|
3
|
+
|
3
4
|
import cv2
|
4
5
|
from fabio.edfimage import EdfImage
|
5
6
|
import tkinter as tk
|
@@ -20,9 +21,6 @@ from datetime import datetime
|
|
20
21
|
from datetime import timedelta
|
21
22
|
import numpy as np
|
22
23
|
import sys
|
23
|
-
from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QVBoxLayout, QWidget, QPushButton, QFileDialog, QMessageBox, QLineEdit, QHBoxLayout, QGroupBox, QCheckBox
|
24
|
-
from PyQt5.QtGui import QPixmap, QPainter, QPen, QImage, QMouseEvent, QColor
|
25
|
-
from PyQt5.QtCore import Qt, QPoint, QRect, QFileInfo
|
26
24
|
import re
|
27
25
|
import argparse
|
28
26
|
import cv2
|
@@ -1,3 +1,5 @@
|
|
1
|
+
|
2
|
+
|
1
3
|
import cv2
|
2
4
|
from fabio.edfimage import EdfImage
|
3
5
|
import tkinter as tk
|
@@ -18,9 +20,6 @@ from datetime import datetime
|
|
18
20
|
from datetime import timedelta
|
19
21
|
import numpy as np
|
20
22
|
import sys
|
21
|
-
from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QVBoxLayout, QWidget, QPushButton, QFileDialog, QMessageBox, QLineEdit, QHBoxLayout, QGroupBox, QCheckBox
|
22
|
-
from PyQt5.QtGui import QPixmap, QPainter, QPen, QImage, QMouseEvent, QColor
|
23
|
-
from PyQt5.QtCore import Qt, QPoint, QRect, QFileInfo
|
24
23
|
import re
|
25
24
|
import argparse
|
26
25
|
import cv2
|
@@ -20,9 +20,7 @@ from datetime import datetime
|
|
20
20
|
from datetime import timedelta
|
21
21
|
import numpy as np
|
22
22
|
import sys
|
23
|
-
|
24
|
-
from PyQt5.QtGui import QPixmap, QPainter, QPen, QImage, QMouseEvent, QColor
|
25
|
-
from PyQt5.QtCore import Qt, QPoint, QRect, QFileInfo
|
23
|
+
|
26
24
|
import re
|
27
25
|
import argparse
|
28
26
|
import cv2
|
@@ -1,4 +1,6 @@
|
|
1
|
-
import
|
1
|
+
from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QVBoxLayout, QWidget, QPushButton, QFileDialog, QMessageBox, QLineEdit, QHBoxLayout, QGroupBox, QCheckBox
|
2
|
+
from PyQt5.QtGui import QPixmap, QPainter, QPen, QImage, QMouseEvent, QColor
|
3
|
+
from PyQt5.QtCore import Qt, QPoint, QRect, QFileInfo
|
2
4
|
from fabio.edfimage import EdfImage
|
3
5
|
import tkinter as tk
|
4
6
|
from tkinter import filedialog
|
@@ -18,9 +20,6 @@ from datetime import datetime
|
|
18
20
|
from datetime import timedelta
|
19
21
|
import numpy as np
|
20
22
|
import sys
|
21
|
-
from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QVBoxLayout, QWidget, QPushButton, QFileDialog, QMessageBox, QLineEdit, QHBoxLayout, QGroupBox, QCheckBox
|
22
|
-
from PyQt5.QtGui import QPixmap, QPainter, QPen, QImage, QMouseEvent, QColor
|
23
|
-
from PyQt5.QtCore import Qt, QPoint, QRect, QFileInfo
|
24
23
|
import re
|
25
24
|
import argparse
|
26
25
|
import cv2
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: drap
|
3
|
-
Version: 0.0.3.
|
3
|
+
Version: 0.0.3.post5
|
4
4
|
Summary: Tool for analyzing droplet size and concentration using video and EDF images
|
5
5
|
Author-email: "Gabriel Braga Marques Teobaldo, Oleg Prymak, Natalie Wolff, Matthias Epple, Marco Aurélio Brizzotti Andrade, Cássio Alves and Cristiano Luis Pinto de Oliveira" <alves.casssio@gmail.com>
|
6
6
|
License: MIT
|
@@ -10,13 +10,13 @@ Keywords: saxs,x-ray,edf,opencv,pyqt5,droplet
|
|
10
10
|
Requires-Python: >=3.8
|
11
11
|
Description-Content-Type: text/markdown
|
12
12
|
License-File: LICENSE
|
13
|
-
Requires-Dist: opencv-python
|
13
|
+
Requires-Dist: opencv-python-headless>=4.9
|
14
|
+
Requires-Dist: PyQt5>=5.15
|
14
15
|
Requires-Dist: numpy
|
15
16
|
Requires-Dist: matplotlib
|
16
17
|
Requires-Dist: fabio
|
17
18
|
Requires-Dist: pillow
|
18
19
|
Requires-Dist: reportlab
|
19
|
-
Requires-Dist: PyQt5
|
20
20
|
Dynamic: license-file
|
21
21
|
|
22
22
|
# Droplet Computer program
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -1,5 +1,8 @@
|
|
1
1
|
from .utils import *
|
2
2
|
|
3
|
+
from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QVBoxLayout, QWidget, QPushButton, QFileDialog, QMessageBox, QLineEdit, QHBoxLayout, QGroupBox, QCheckBox
|
4
|
+
from PyQt5.QtGui import QPixmap, QPainter, QPen, QImage, QMouseEvent, QColor
|
5
|
+
from PyQt5.QtCore import Qt, QPoint, QRect, QFileInfo
|
3
6
|
import cv2
|
4
7
|
from fabio.edfimage import EdfImage
|
5
8
|
import tkinter as tk
|
@@ -20,9 +23,6 @@ from datetime import datetime
|
|
20
23
|
from datetime import timedelta
|
21
24
|
import numpy as np
|
22
25
|
import sys
|
23
|
-
from PyQt5.QtWidgets import QApplication, QMainWindow, QLabel, QVBoxLayout, QWidget, QPushButton, QFileDialog, QMessageBox, QLineEdit, QHBoxLayout, QGroupBox, QCheckBox
|
24
|
-
from PyQt5.QtGui import QPixmap, QPainter, QPen, QImage, QMouseEvent, QColor
|
25
|
-
from PyQt5.QtCore import Qt, QPoint, QRect, QFileInfo
|
26
26
|
import re
|
27
27
|
import argparse
|
28
28
|
import cv2
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|