img-phy-sim 0.1__tar.gz → 0.2__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.
Potentially problematic release.
This version of img-phy-sim might be problematic. Click here for more details.
- {img_phy_sim-0.1 → img_phy_sim-0.2}/PKG-INFO +2 -2
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim.egg-info/PKG-INFO +2 -2
- {img_phy_sim-0.1 → img_phy_sim-0.2}/setup.py +2 -4
- {img_phy_sim-0.1 → img_phy_sim-0.2}/README.md +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim/__init__.py +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim/img.py +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim/math.py +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim/ray_tracing.py +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim.egg-info/SOURCES.txt +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim.egg-info/dependency_links.txt +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim.egg-info/requires.txt +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/img_phy_sim.egg-info/top_level.txt +0 -0
- {img_phy_sim-0.1 → img_phy_sim-0.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: img-phy-sim
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2
|
|
4
4
|
Summary: Physical Simulations on Images.
|
|
5
5
|
Home-page: https://github.com/xXAI-botXx/Image-Physics-Simulation
|
|
6
6
|
Download-URL: https://github.com/xXAI-botXx/Image-Physics-Simulation/archive/v_01.tar.gz
|
|
@@ -37,7 +37,7 @@ Contents:
|
|
|
37
37
|
|
|
38
38
|
[> Documentation <](https://xxai-botxx.github.io/Image-Physics-Simulation/img_phy_sim.html)
|
|
39
39
|
|
|
40
|
-
<img src="
|
|
40
|
+
<img src="https://github.com/xXAI-botXx/Image-Physics-Simulation/raw/main/img_phy_sim/raytracing_example.png"></img>
|
|
41
41
|
|
|
42
42
|
<br><br>
|
|
43
43
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: img-phy-sim
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2
|
|
4
4
|
Summary: Physical Simulations on Images.
|
|
5
5
|
Home-page: https://github.com/xXAI-botXx/Image-Physics-Simulation
|
|
6
6
|
Download-URL: https://github.com/xXAI-botXx/Image-Physics-Simulation/archive/v_01.tar.gz
|
|
@@ -37,7 +37,7 @@ Contents:
|
|
|
37
37
|
|
|
38
38
|
[> Documentation <](https://xxai-botxx.github.io/Image-Physics-Simulation/img_phy_sim.html)
|
|
39
39
|
|
|
40
|
-
<img src="
|
|
40
|
+
<img src="https://github.com/xXAI-botXx/Image-Physics-Simulation/raw/main/img_phy_sim/raytracing_example.png"></img>
|
|
41
41
|
|
|
42
42
|
<br><br>
|
|
43
43
|
|
|
@@ -3,13 +3,11 @@ from setuptools import setup, find_packages
|
|
|
3
3
|
# relative links to absolute
|
|
4
4
|
with open("./README.md", "r") as f:
|
|
5
5
|
readme = f.read()
|
|
6
|
-
readme = readme.replace('src="./
|
|
7
|
-
readme = readme.replace('<a href="./example.ipynb">', '<a href="https://github.com/xXAI-botXx/Genetic-Algorithm/blob/main/example.ipynb">')
|
|
8
|
-
readme = readme.replace('<a href="./example_2.ipynb">', '<a href="https://github.com/xXAI-botXx/Genetic-Algorithm/blob/main/example_2.ipynb">')
|
|
6
|
+
readme = readme.replace('src="./img_phy_sim/raytracing_example.png"', 'src="https://github.com/xXAI-botXx/Image-Physics-Simulation/raw/main/img_phy_sim/raytracing_example.png"')
|
|
9
7
|
|
|
10
8
|
setup(
|
|
11
9
|
name='img-phy-sim',
|
|
12
|
-
version='0.
|
|
10
|
+
version='0.2',
|
|
13
11
|
packages=['img_phy_sim'],# find_packages(),
|
|
14
12
|
install_requires=[
|
|
15
13
|
# List any dependencies here, e.g. 'numpy', 'requests'
|
|
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
|