drap 0.0.2__tar.gz → 0.0.2.post1__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.
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: drap
3
- Version: 0.0.2
3
+ Version: 0.0.2.post1
4
4
  Summary: Tool for analyzing droplet size and concentration using video and EDF images
5
- Author-email: "Gabriel Braga Marques Teobaldo a, Oleg Prymak c, Natalie Wolff c, Matthias Epple c, Marco Aurélio Brizzotti Andrade b, Cássio Alves d and Cristiano Luis Pinto de Oliveira" <alves.casssio@gmail.com>
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
7
7
  Project-URL: Homepage, https://test.pypi.org/project/DrAP/
8
8
  Project-URL: Source, https://test.pypi.org/project/DrAP/
@@ -19,7 +19,7 @@ Requires-Dist: reportlab
19
19
  Requires-Dist: PyQt5
20
20
  Dynamic: license-file
21
21
 
22
- # Droplet Analyzer
22
+ # Droplet Computer program
23
23
 
24
24
  This package allows the analysis of videos and images in EDF format to extract
25
25
  physical parameters of droplets in acoustic levitation or other experimental techniques.
@@ -1,4 +1,4 @@
1
- # Droplet Analyzer
1
+ # Droplet Computer program
2
2
 
3
3
  This package allows the analysis of videos and images in EDF format to extract
4
4
  physical parameters of droplets in acoustic levitation or other experimental techniques.
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "drap"
7
- version = "0.0.2"
7
+ version = "0.0.2.post1"
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"}
11
- authors = [{ name = "Gabriel Braga Marques Teobaldo a, Oleg Prymak c, Natalie Wolff c, Matthias Epple c, Marco Aurélio Brizzotti Andrade b, Cássio Alves d and Cristiano Luis Pinto de Oliveira", email = "alves.casssio@gmail.com" }]
11
+ authors = [{ name = "Gabriel Braga Marques Teobaldo, Oleg Prymak, Natalie Wolff, Matthias Epple, Marco Aurélio Brizzotti Andrade, Cássio Alves and Cristiano Luis Pinto de Oliveira", email = "alves.casssio@gmail.com" }]
12
12
  requires-python = ">=3.8"
13
13
 
14
14
  dependencies = [
@@ -25,7 +25,7 @@ keywords = ["saxs", "x-ray", "edf", "opencv", "pyqt5", "droplet"]
25
25
 
26
26
  [project.scripts]
27
27
  drap = "drap.main:main"
28
- drap-gui = "drap.gui:main_gui"
28
+ drap-gui = "drap.gui:gui"
29
29
 
30
30
  [project.urls]
31
31
  Homepage = "https://test.pypi.org/project/DrAP/"
@@ -0,0 +1,3 @@
1
+ drap = "drap.main:main"
2
+
3
+ __version__ = "0.1.0"
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: drap
3
- Version: 0.0.2
3
+ Version: 0.0.2.post1
4
4
  Summary: Tool for analyzing droplet size and concentration using video and EDF images
5
- Author-email: "Gabriel Braga Marques Teobaldo a, Oleg Prymak c, Natalie Wolff c, Matthias Epple c, Marco Aurélio Brizzotti Andrade b, Cássio Alves d and Cristiano Luis Pinto de Oliveira" <alves.casssio@gmail.com>
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
7
7
  Project-URL: Homepage, https://test.pypi.org/project/DrAP/
8
8
  Project-URL: Source, https://test.pypi.org/project/DrAP/
@@ -19,7 +19,7 @@ Requires-Dist: reportlab
19
19
  Requires-Dist: PyQt5
20
20
  Dynamic: license-file
21
21
 
22
- # Droplet Analyzer
22
+ # Droplet Computer program
23
23
 
24
24
  This package allows the analysis of videos and images in EDF format to extract
25
25
  physical parameters of droplets in acoustic levitation or other experimental techniques.
@@ -1,11 +1,11 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
- src/__init__.py
5
- src/automation.py
6
- src/gui.py
7
- src/main.py
8
- src/terminal_interface.py
4
+ src/drap/__init__.py
5
+ src/drap/automation.py
6
+ src/drap/gui.py
7
+ src/drap/main.py
8
+ src/drap/terminal_interface.py
9
9
  src/drap.egg-info/PKG-INFO
10
10
  src/drap.egg-info/SOURCES.txt
11
11
  src/drap.egg-info/dependency_links.txt
@@ -1,3 +1,3 @@
1
1
  [console_scripts]
2
2
  drap = drap.main:main
3
- drap-gui = drap.gui:main_gui
3
+ drap-gui = drap.gui:gui
@@ -0,0 +1 @@
1
+ drap
@@ -1,3 +0,0 @@
1
- DrAP = "DrAP.main:main"
2
-
3
- __version__ = "0.1.0"
@@ -1,5 +0,0 @@
1
- __init__
2
- automation
3
- gui
4
- main
5
- terminal_interface
File without changes
File without changes
File without changes
File without changes