b4n1 0.0.1__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.
- b4n1-0.0.1/PKG-INFO +26 -0
- b4n1-0.0.1/README.md +7 -0
- b4n1-0.0.1/b4n1.egg-info/PKG-INFO +26 -0
- b4n1-0.0.1/b4n1.egg-info/SOURCES.txt +7 -0
- b4n1-0.0.1/b4n1.egg-info/dependency_links.txt +1 -0
- b4n1-0.0.1/b4n1.egg-info/entry_points.txt +2 -0
- b4n1-0.0.1/b4n1.egg-info/top_level.txt +1 -0
- b4n1-0.0.1/pyproject.toml +34 -0
- b4n1-0.0.1/setup.cfg +4 -0
b4n1-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: b4n1
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: B4N1 Framework — Build web apps in Python, deploy as native binaries
|
|
5
|
+
Author-email: Bani Montoya <banimontoya@gmail.com>
|
|
6
|
+
License: MIT OR Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://b4n1.com
|
|
8
|
+
Project-URL: Repository, https://github.com/B4N1-com/b4n1
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# B4N1 Framework
|
|
21
|
+
|
|
22
|
+
Build web applications in Python, deploy as native binaries.
|
|
23
|
+
|
|
24
|
+
This package is reserved for the B4N1 framework.
|
|
25
|
+
|
|
26
|
+
https://github.com/B4N1-com/b4n1
|
b4n1-0.0.1/README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: b4n1
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: B4N1 Framework — Build web apps in Python, deploy as native binaries
|
|
5
|
+
Author-email: Bani Montoya <banimontoya@gmail.com>
|
|
6
|
+
License: MIT OR Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://b4n1.com
|
|
8
|
+
Project-URL: Repository, https://github.com/B4N1-com/b4n1
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
15
|
+
Classifier: Topic :: Internet :: WWW/HTTP
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Description-Content-Type: text/markdown
|
|
19
|
+
|
|
20
|
+
# B4N1 Framework
|
|
21
|
+
|
|
22
|
+
Build web applications in Python, deploy as native binaries.
|
|
23
|
+
|
|
24
|
+
This package is reserved for the B4N1 framework.
|
|
25
|
+
|
|
26
|
+
https://github.com/B4N1-com/b4n1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "b4n1"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "B4N1 Framework — Build web apps in Python, deploy as native binaries"
|
|
9
|
+
authors = [
|
|
10
|
+
{name = "Bani Montoya", email = "banimontoya@gmail.com"}
|
|
11
|
+
]
|
|
12
|
+
license = {text = "MIT OR Apache-2.0"}
|
|
13
|
+
readme = "README.md"
|
|
14
|
+
requires-python = ">=3.10"
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 1 - Planning",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Topic :: Internet :: WWW/HTTP",
|
|
23
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[project.urls]
|
|
27
|
+
Homepage = "https://b4n1.com"
|
|
28
|
+
Repository = "https://github.com/B4N1-com/b4n1"
|
|
29
|
+
|
|
30
|
+
[tool.setuptools]
|
|
31
|
+
packages = []
|
|
32
|
+
|
|
33
|
+
[project.scripts]
|
|
34
|
+
b4n1 = "b4n1.cli:main"
|
b4n1-0.0.1/setup.cfg
ADDED