Fast-Controller 0.0.0.dev1__tar.gz → 0.0.0.dev2__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.
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/PKG-INFO +4 -1
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/pyproject.toml +6 -7
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/README.md +0 -0
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/fast_controller/__init__.py +0 -0
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/fast_controller/resource.py +0 -0
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/fast_controller/util.py +0 -0
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/tests/test_controller.py +0 -0
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/tests/test_resource.py +0 -0
- {fast_controller-0.0.0.dev1 → fast_controller-0.0.0.dev2}/tests/test_util.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: Fast-Controller
|
|
3
|
-
Version: 0.0.0.
|
|
3
|
+
Version: 0.0.0.dev2
|
|
4
4
|
Summary: The fastest way to a turn your models into a full ReST API
|
|
5
5
|
Keywords: controller,base,rest,api,backend
|
|
6
6
|
Author-Email: Cody M Sommer <bassmastacod@gmail.com>
|
|
@@ -21,6 +21,9 @@ Classifier: Typing :: Typed
|
|
|
21
21
|
Project-URL: Repository, https://github.com/BassMastaCod/Fast-Controller.git
|
|
22
22
|
Project-URL: Issues, https://github.com/BassMastaCod/Fast-Controller/issues
|
|
23
23
|
Requires-Python: >=3.7
|
|
24
|
+
Requires-Dist: fastapi
|
|
25
|
+
Requires-Dist: daomodel
|
|
26
|
+
Requires-Dist: SQLModel
|
|
24
27
|
Description-Content-Type: text/markdown
|
|
25
28
|
|
|
26
29
|
# Fast-Controller
|
|
@@ -2,11 +2,6 @@
|
|
|
2
2
|
requires = [
|
|
3
3
|
"pdm-backend",
|
|
4
4
|
]
|
|
5
|
-
dependencies = [
|
|
6
|
-
"fastapi",
|
|
7
|
-
"daomodel",
|
|
8
|
-
"SQLModel",
|
|
9
|
-
]
|
|
10
5
|
build-backend = "pdm.backend"
|
|
11
6
|
|
|
12
7
|
[project]
|
|
@@ -25,7 +20,11 @@ keywords = [
|
|
|
25
20
|
]
|
|
26
21
|
readme = "README.md"
|
|
27
22
|
requires-python = ">=3.7"
|
|
28
|
-
dependencies = [
|
|
23
|
+
dependencies = [
|
|
24
|
+
"fastapi",
|
|
25
|
+
"daomodel",
|
|
26
|
+
"SQLModel",
|
|
27
|
+
]
|
|
29
28
|
classifiers = [
|
|
30
29
|
"License :: OSI Approved :: MIT License",
|
|
31
30
|
"Programming Language :: Python :: 3.7",
|
|
@@ -41,7 +40,7 @@ classifiers = [
|
|
|
41
40
|
"Topic :: Software Development :: Libraries",
|
|
42
41
|
"Typing :: Typed",
|
|
43
42
|
]
|
|
44
|
-
version = "0.0.0.
|
|
43
|
+
version = "0.0.0.dev2"
|
|
45
44
|
|
|
46
45
|
[project.license]
|
|
47
46
|
text = "MIT"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|