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 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,7 @@
1
+ # B4N1 Framework
2
+
3
+ Build web applications in Python, deploy as native binaries.
4
+
5
+ This package is reserved for the B4N1 framework.
6
+
7
+ https://github.com/B4N1-com/b4n1
@@ -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,7 @@
1
+ README.md
2
+ pyproject.toml
3
+ b4n1.egg-info/PKG-INFO
4
+ b4n1.egg-info/SOURCES.txt
5
+ b4n1.egg-info/dependency_links.txt
6
+ b4n1.egg-info/entry_points.txt
7
+ b4n1.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ b4n1 = b4n1.cli:main
@@ -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
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+