SmolBit 1.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.
- smolbit-1.0.0/PKG-INFO +14 -0
- smolbit-1.0.0/README.md +5 -0
- smolbit-1.0.0/pyproject.toml +18 -0
- smolbit-1.0.0/setup.cfg +4 -0
- smolbit-1.0.0/src/SmolBit.egg-info/PKG-INFO +14 -0
- smolbit-1.0.0/src/SmolBit.egg-info/SOURCES.txt +6 -0
- smolbit-1.0.0/src/SmolBit.egg-info/dependency_links.txt +1 -0
- smolbit-1.0.0/src/SmolBit.egg-info/top_level.txt +1 -0
smolbit-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: SmolBit
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A tiny little programming language made with python
|
|
5
|
+
Author-email: Smol <kingalexander471@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# SmolBit
|
|
11
|
+
|
|
12
|
+
SmolBit is a programming language i've been making for a little while. This is a python package specifically made for compiling and running it.
|
|
13
|
+
|
|
14
|
+
To use the package, simply install it (it is not installable via pip yet, sorry) and run `python -m SmolBit` with any additional arguments needed.
|
smolbit-1.0.0/README.md
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
# SmolBit
|
|
2
|
+
|
|
3
|
+
SmolBit is a programming language i've been making for a little while. This is a python package specifically made for compiling and running it.
|
|
4
|
+
|
|
5
|
+
To use the package, simply install it (it is not installable via pip yet, sorry) and run `python -m SmolBit` with any additional arguments needed.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "SmolBit"
|
|
3
|
+
version = "1.0.0"
|
|
4
|
+
description = "A tiny little programming language made with python"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.12"
|
|
7
|
+
authors = [
|
|
8
|
+
{name = "Smol", email = "kingalexander471@gmail.com"}
|
|
9
|
+
]
|
|
10
|
+
dependencies = []
|
|
11
|
+
license = "MIT"
|
|
12
|
+
|
|
13
|
+
[build-system]
|
|
14
|
+
requires = ["setuptools"]
|
|
15
|
+
build-backend = "setuptools.build_meta"
|
|
16
|
+
|
|
17
|
+
[tool.setuptools.packages.find]
|
|
18
|
+
where = ["src"]
|
smolbit-1.0.0/setup.cfg
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: SmolBit
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A tiny little programming language made with python
|
|
5
|
+
Author-email: Smol <kingalexander471@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# SmolBit
|
|
11
|
+
|
|
12
|
+
SmolBit is a programming language i've been making for a little while. This is a python package specifically made for compiling and running it.
|
|
13
|
+
|
|
14
|
+
To use the package, simply install it (it is not installable via pip yet, sorry) and run `python -m SmolBit` with any additional arguments needed.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|