loosey 0.0.0__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.
- loosey-0.0.0/PKG-INFO +23 -0
- loosey-0.0.0/README.md +15 -0
- loosey-0.0.0/loosey.egg-info/PKG-INFO +23 -0
- loosey-0.0.0/loosey.egg-info/SOURCES.txt +6 -0
- loosey-0.0.0/loosey.egg-info/dependency_links.txt +1 -0
- loosey-0.0.0/loosey.egg-info/top_level.txt +1 -0
- loosey-0.0.0/pyproject.toml +15 -0
- loosey-0.0.0/setup.cfg +4 -0
loosey-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: loosey
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: REDIRECT to Loosey goosey C parser and interpreter
|
|
5
|
+
Author-email: Ben Ayers-Glassey <bayersglassey@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/bayersglassey/loosey-goosey-c
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# The Loosey Goosey C Parser and Interpreter
|
|
10
|
+
|
|
11
|
+
**WARNING**: This package is not the one you want to install!..
|
|
12
|
+
You should instead install `loosey-goosey-c`:
|
|
13
|
+
```
|
|
14
|
+
pip install loosey-goosey-c
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The reason for this `loosey` package is that `loosey` is the main module
|
|
18
|
+
provided by the package `loosey-goosey-c`, and I want to avoid confusion
|
|
19
|
+
(and package squatting).
|
|
20
|
+
|
|
21
|
+
See also:
|
|
22
|
+
* https://github.com/bayersglassey/loosey-goosey-c
|
|
23
|
+
* https://pypi.org/project/loosey-goosey-c
|
loosey-0.0.0/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# The Loosey Goosey C Parser and Interpreter
|
|
2
|
+
|
|
3
|
+
**WARNING**: This package is not the one you want to install!..
|
|
4
|
+
You should instead install `loosey-goosey-c`:
|
|
5
|
+
```
|
|
6
|
+
pip install loosey-goosey-c
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
The reason for this `loosey` package is that `loosey` is the main module
|
|
10
|
+
provided by the package `loosey-goosey-c`, and I want to avoid confusion
|
|
11
|
+
(and package squatting).
|
|
12
|
+
|
|
13
|
+
See also:
|
|
14
|
+
* https://github.com/bayersglassey/loosey-goosey-c
|
|
15
|
+
* https://pypi.org/project/loosey-goosey-c
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: loosey
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: REDIRECT to Loosey goosey C parser and interpreter
|
|
5
|
+
Author-email: Ben Ayers-Glassey <bayersglassey@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/bayersglassey/loosey-goosey-c
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# The Loosey Goosey C Parser and Interpreter
|
|
10
|
+
|
|
11
|
+
**WARNING**: This package is not the one you want to install!..
|
|
12
|
+
You should instead install `loosey-goosey-c`:
|
|
13
|
+
```
|
|
14
|
+
pip install loosey-goosey-c
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The reason for this `loosey` package is that `loosey` is the main module
|
|
18
|
+
provided by the package `loosey-goosey-c`, and I want to avoid confusion
|
|
19
|
+
(and package squatting).
|
|
20
|
+
|
|
21
|
+
See also:
|
|
22
|
+
* https://github.com/bayersglassey/loosey-goosey-c
|
|
23
|
+
* https://pypi.org/project/loosey-goosey-c
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "loosey"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "REDIRECT to Loosey goosey C parser and interpreter"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name = "Ben Ayers-Glassey", email = "bayersglassey@gmail.com" },
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://github.com/bayersglassey/loosey-goosey-c"
|
loosey-0.0.0/setup.cfg
ADDED