BasicToolsT 0.0.5__tar.gz → 0.0.7__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.
- {basictoolst-0.0.5 → basictoolst-0.0.7}/PKG-INFO +2 -11
- basictoolst-0.0.7/README.md +1 -0
- {basictoolst-0.0.5 → basictoolst-0.0.7}/pyproject.toml +2 -2
- basictoolst-0.0.7/src/this does nothing.txt +1 -0
- basictoolst-0.0.7/tests/test +1 -0
- basictoolst-0.0.5/README.md +0 -10
- basictoolst-0.0.5/requirements.txt +0 -2
- {basictoolst-0.0.5 → basictoolst-0.0.7}/LICENSE +0 -0
- {basictoolst-0.0.5 → basictoolst-0.0.7/src/basictoolst}/__init__.py +0 -0
- {basictoolst-0.0.5 → basictoolst-0.0.7/src/basictoolst}/basictools.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: BasicToolsT
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.7
|
|
4
4
|
Summary: A small example package
|
|
5
5
|
Project-URL: Homepage, https://github.com/CursedGhoul/BasicToolsT
|
|
6
6
|
Project-URL: Issues, https://github.com/CursedGhoul/BasicToolsT/issues
|
|
@@ -14,13 +14,4 @@ Requires-Dist: sounddevice
|
|
|
14
14
|
Requires-Dist: soundfile
|
|
15
15
|
Description-Content-Type: text/markdown
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
## How To Use
|
|
20
|
-
|
|
21
|
-
1. Place your file and basictools.py in the same folder
|
|
22
|
-
2. import from the basictools.py file
|
|
23
|
-
|
|
24
|
-
ex: from basictools.py import title2
|
|
25
|
-
|
|
26
|
-
if you use pyinstaller to bundle your scripts just pyinstaller your main file and pyinstaller automatically handles dependencies
|
|
17
|
+
ignore the file organization making this work on pypi is painful
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ignore the file organization making this work on pypi is painful
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "BasicToolsT"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.7"
|
|
4
4
|
authors = [
|
|
5
5
|
{ name="CursedGhoul", email="noemail@email.com" },
|
|
6
6
|
]
|
|
@@ -21,7 +21,7 @@ requires = ["hatchling"]
|
|
|
21
21
|
build-backend = "hatchling.build"
|
|
22
22
|
|
|
23
23
|
[tool.hatch.build.targets.wheel]
|
|
24
|
-
packages = ["main"]
|
|
24
|
+
packages = ["src/main"]
|
|
25
25
|
|
|
26
26
|
[project.urls]
|
|
27
27
|
Homepage = "https://github.com/CursedGhoul/BasicToolsT"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
this does nothing
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
test
|
basictoolst-0.0.5/README.md
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
testing packages
|
|
2
|
-
|
|
3
|
-
## How To Use
|
|
4
|
-
|
|
5
|
-
1. Place your file and basictools.py in the same folder
|
|
6
|
-
2. import from the basictools.py file
|
|
7
|
-
|
|
8
|
-
ex: from basictools.py import title2
|
|
9
|
-
|
|
10
|
-
if you use pyinstaller to bundle your scripts just pyinstaller your main file and pyinstaller automatically handles dependencies
|
|
File without changes
|
|
File without changes
|
|
File without changes
|