anakonda.py 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.
File without changes
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: anakonda.py
3
+ Version: 1.0.0
4
+ Summary: A high-performance web framework for Python.
5
+ Author-email: Ahmed Abdelkhaliq <abdelkhaliqqq@gmail.com>
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Dynamic: license-file
File without changes
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: anakonda.py
3
+ Version: 1.0.0
4
+ Summary: A high-performance web framework for Python.
5
+ Author-email: Ahmed Abdelkhaliq <abdelkhaliqqq@gmail.com>
6
+ Classifier: Intended Audience :: Developers
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Dynamic: license-file
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ anakonda.py.egg-info/PKG-INFO
5
+ anakonda.py.egg-info/SOURCES.txt
6
+ anakonda.py.egg-info/dependency_links.txt
7
+ anakonda.py.egg-info/entry_points.txt
8
+ anakonda.py.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ konda-admin = anakonda.cli.main:main
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "anakonda.py"
7
+ version = "1.0.0"
8
+ authors = [
9
+ { name="Ahmed Abdelkhaliq", email="abdelkhaliqqq@gmail.com" },
10
+ ]
11
+ description = "A high-performance web framework for Python."
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+ dependencies = [
15
+ ]
16
+ classifiers = [
17
+ "Intended Audience :: Developers",
18
+ "Programming Language :: Python :: 3",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Operating System :: OS Independent",
21
+ ]
22
+
23
+ [project.scripts]
24
+ konda-admin = "anakonda.cli.main:main"
25
+
26
+ [tool.setuptools.packages.find]
27
+ where = ["."]
28
+ include = ["anakonda*"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+