drap 0.0.3.post11__tar.gz → 0.0.3.post12__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.post12/MANIFEST.in +13 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/PKG-INFO +2 -2
- {drap-0.0.3.post11 → drap-0.0.3.post12}/pyproject.toml +11 -2
- drap-0.0.3.post12/src/drap/resources/DrapuserGuide_eng.pdf +0 -0
- drap-0.0.3.post12/src/drap/resources/DrapuserGuide_pt.pdf +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap.egg-info/PKG-INFO +2 -2
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap.egg-info/SOURCES.txt +4 -1
- {drap-0.0.3.post11 → drap-0.0.3.post12}/LICENSE +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/README.md +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/setup.cfg +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap/__init__.py +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap/automation.py +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap/gui.py +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap/main.py +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap/qt_adjust.py +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap/terminal_interface.py +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap/utils.py +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap.egg-info/dependency_links.txt +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap.egg-info/entry_points.txt +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap.egg-info/requires.txt +0 -0
- {drap-0.0.3.post11 → drap-0.0.3.post12}/src/drap.egg-info/top_level.txt +0 -0
@@ -0,0 +1,13 @@
|
|
1
|
+
include README.md
|
2
|
+
include LICENSE
|
3
|
+
include pyproject.toml
|
4
|
+
|
5
|
+
recursive-include src/drap/data *
|
6
|
+
recursive-include src/drap/examples *
|
7
|
+
recursive-include src/drap/resources *
|
8
|
+
|
9
|
+
|
10
|
+
recursive-include docs *.md *.png *.jpg *.pdf
|
11
|
+
|
12
|
+
|
13
|
+
global-exclude *.pyc __pycache__ *.pyo *.bak .DS_Store
|
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: drap
|
3
|
-
Version: 0.0.3.
|
3
|
+
Version: 0.0.3.post12
|
4
4
|
Summary: Tool for analyzing droplet size and concentration using video and EDF images
|
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" <
|
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" <crislpo@ufpr.br>
|
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/
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "drap"
|
7
|
-
version = "0.0.3.
|
7
|
+
version = "0.0.3.post12"
|
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, Oleg Prymak, Natalie Wolff, Matthias Epple, Marco Aurélio Brizzotti Andrade, Cássio Alves and Cristiano Luis Pinto de Oliveira", email = "
|
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 = "crislpo@ufpr.br" }]
|
12
12
|
requires-python = ">=3.10"
|
13
13
|
|
14
14
|
dependencies = [
|
@@ -29,10 +29,19 @@ drap-gui = "drap.gui:main_gui"
|
|
29
29
|
|
30
30
|
[tool.setuptools]
|
31
31
|
package-dir = {"" = "src"}
|
32
|
+
include-package-data = true
|
32
33
|
|
33
34
|
[tool.setuptools.packages.find]
|
34
35
|
where = ["src"]
|
35
36
|
|
37
|
+
[tool.setuptools.package-data]
|
38
|
+
drap = [
|
39
|
+
"data/**/*",
|
40
|
+
"examples/**/*",
|
41
|
+
"resources/**/*",
|
42
|
+
"*.txt", "*.md"
|
43
|
+
]
|
44
|
+
|
36
45
|
[project.urls]
|
37
46
|
Homepage = "https://test.pypi.org/project/DrAP/"
|
38
47
|
Source = "https://test.pypi.org/project/DrAP/"
|
Binary file
|
Binary file
|
@@ -1,8 +1,8 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: drap
|
3
|
-
Version: 0.0.3.
|
3
|
+
Version: 0.0.3.post12
|
4
4
|
Summary: Tool for analyzing droplet size and concentration using video and EDF images
|
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" <
|
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" <crislpo@ufpr.br>
|
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/
|
@@ -1,4 +1,5 @@
|
|
1
1
|
LICENSE
|
2
|
+
MANIFEST.in
|
2
3
|
README.md
|
3
4
|
pyproject.toml
|
4
5
|
src/drap/__init__.py
|
@@ -13,4 +14,6 @@ src/drap.egg-info/SOURCES.txt
|
|
13
14
|
src/drap.egg-info/dependency_links.txt
|
14
15
|
src/drap.egg-info/entry_points.txt
|
15
16
|
src/drap.egg-info/requires.txt
|
16
|
-
src/drap.egg-info/top_level.txt
|
17
|
+
src/drap.egg-info/top_level.txt
|
18
|
+
src/drap/resources/DrapuserGuide_eng.pdf
|
19
|
+
src/drap/resources/DrapuserGuide_pt.pdf
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|