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.
- anakonda_py-1.0.0/LICENSE +0 -0
- anakonda_py-1.0.0/PKG-INFO +13 -0
- anakonda_py-1.0.0/README.md +0 -0
- anakonda_py-1.0.0/anakonda.py.egg-info/PKG-INFO +13 -0
- anakonda_py-1.0.0/anakonda.py.egg-info/SOURCES.txt +8 -0
- anakonda_py-1.0.0/anakonda.py.egg-info/dependency_links.txt +1 -0
- anakonda_py-1.0.0/anakonda.py.egg-info/entry_points.txt +2 -0
- anakonda_py-1.0.0/anakonda.py.egg-info/top_level.txt +1 -0
- anakonda_py-1.0.0/pyproject.toml +28 -0
- anakonda_py-1.0.0/setup.cfg +4 -0
|
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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -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*"]
|