SimpleGeometryCalc 0.0.6__tar.gz → 0.0.6.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.
- simplegeometrycalc-0.0.6.2/PKG-INFO +35 -0
- simplegeometrycalc-0.0.6.2/README.md +25 -0
- {simplegeometrycalc-0.0.6 → simplegeometrycalc-0.0.6.2}/pyproject.toml +4 -1
- simplegeometrycalc-0.0.6/PKG-INFO +0 -19
- simplegeometrycalc-0.0.6/README.md +0 -10
- {simplegeometrycalc-0.0.6 → simplegeometrycalc-0.0.6.2}/.github/workflows/python-publish.yml +0 -0
- {simplegeometrycalc-0.0.6 → simplegeometrycalc-0.0.6.2}/LICENSE +0 -0
- {simplegeometrycalc-0.0.6 → simplegeometrycalc-0.0.6.2}/SimpleGeometryCalc/__init__.py +0 -0
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: SimpleGeometryCalc
|
|
3
|
+
Version: 0.0.6.2
|
|
4
|
+
Summary: A small library to calculate most variables of shapes from just one!
|
|
5
|
+
Author: Tatpoato
|
|
6
|
+
Maintainer: Tatpoato
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Keywords: Geometry,Simple,calc,geometry,simple
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# SimpleGeometry
|
|
12
|
+
A simple python library to calculate variables of shapes with only one input.
|
|
13
|
+
|
|
14
|
+
# Commands
|
|
15
|
+
|
|
16
|
+
formulas(shape) -- formulas allows you to rewiew the formulas of either a square or a circle (if you forgot them)
|
|
17
|
+
|
|
18
|
+
allesumcircle(r=,d=,c=,a=) -- allesumcircle allows you to input either the radius (r) or the diameter (d) or the circumference (c) or the area (a) and gain access to all the other variables with the simple command. you can also turn printing off by doing Print=False.
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
allesumsquare(s=,a=,p=,d=, Print=False) -- allesumsquare allows you to input either the sides (s) or the area (a) or the perimeter (p) or the diagonal (d) and gain access to all the other variables. you can also turn printing off by doing Print=False.
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
Variables that come with this library:
|
|
25
|
+
|
|
26
|
+
pi -- the pi variable is just your standard pi (3.14159265358979323846264338)
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
# Pip
|
|
30
|
+
|
|
31
|
+
now available via pip install SimpleGeometryCalc
|
|
32
|
+
|
|
33
|
+
https://pypi.org/project/SimpleGeometryCalc/#description
|
|
34
|
+
|
|
35
|
+
👍
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# SimpleGeometry
|
|
2
|
+
A simple python library to calculate variables of shapes with only one input.
|
|
3
|
+
|
|
4
|
+
# Commands
|
|
5
|
+
|
|
6
|
+
formulas(shape) -- formulas allows you to rewiew the formulas of either a square or a circle (if you forgot them)
|
|
7
|
+
|
|
8
|
+
allesumcircle(r=,d=,c=,a=) -- allesumcircle allows you to input either the radius (r) or the diameter (d) or the circumference (c) or the area (a) and gain access to all the other variables with the simple command. you can also turn printing off by doing Print=False.
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
allesumsquare(s=,a=,p=,d=, Print=False) -- allesumsquare allows you to input either the sides (s) or the area (a) or the perimeter (p) or the diagonal (d) and gain access to all the other variables. you can also turn printing off by doing Print=False.
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
Variables that come with this library:
|
|
15
|
+
|
|
16
|
+
pi -- the pi variable is just your standard pi (3.14159265358979323846264338)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
# Pip
|
|
20
|
+
|
|
21
|
+
now available via pip install SimpleGeometryCalc
|
|
22
|
+
|
|
23
|
+
https://pypi.org/project/SimpleGeometryCalc/#description
|
|
24
|
+
|
|
25
|
+
👍
|
|
@@ -4,11 +4,14 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "SimpleGeometryCalc"
|
|
7
|
-
version = "0.0.6"
|
|
7
|
+
version = "0.0.6.2"
|
|
8
8
|
description = "A small library to calculate most variables of shapes from just one!"
|
|
9
9
|
authors = [
|
|
10
10
|
{ name = "Tatpoato" }
|
|
11
11
|
]
|
|
12
|
+
maintainers = [
|
|
13
|
+
{name = "Tatpoato"}
|
|
14
|
+
]
|
|
12
15
|
keywords = ["Geometry", "Simple", "simple", "geometry", "calc"]
|
|
13
16
|
readme = "README.md"
|
|
14
17
|
# license = "Custom / Non modifiable for Commercial use."
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: SimpleGeometryCalc
|
|
3
|
-
Version: 0.0.6
|
|
4
|
-
Summary: A small library to calculate most variables of shapes from just one!
|
|
5
|
-
Author: Tatpoato
|
|
6
|
-
License-File: LICENSE
|
|
7
|
-
Keywords: Geometry,Simple,calc,geometry,simple
|
|
8
|
-
Description-Content-Type: text/markdown
|
|
9
|
-
|
|
10
|
-
# SimpleGeometry
|
|
11
|
-
A simple python library to calculate variables of shapes with only one input.
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
# Pip
|
|
16
|
-
|
|
17
|
-
now hopefully available via pip install SimpleGeometryCalc
|
|
18
|
-
|
|
19
|
-
:pray:
|
{simplegeometrycalc-0.0.6 → simplegeometrycalc-0.0.6.2}/.github/workflows/python-publish.yml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|