Fast-Controller 0.0.0.dev0__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: Fast-Controller
3
- Version: 0.0.0.dev0
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
@@ -1,9 +1,6 @@
1
1
  [build-system]
2
2
  requires = [
3
3
  "pdm-backend",
4
- "fastapi",
5
- "daomodel",
6
- "SQLModel",
7
4
  ]
8
5
  build-backend = "pdm.backend"
9
6
 
@@ -23,7 +20,11 @@ keywords = [
23
20
  ]
24
21
  readme = "README.md"
25
22
  requires-python = ">=3.7"
26
- dependencies = []
23
+ dependencies = [
24
+ "fastapi",
25
+ "daomodel",
26
+ "SQLModel",
27
+ ]
27
28
  classifiers = [
28
29
  "License :: OSI Approved :: MIT License",
29
30
  "Programming Language :: Python :: 3.7",
@@ -39,7 +40,7 @@ classifiers = [
39
40
  "Topic :: Software Development :: Libraries",
40
41
  "Typing :: Typed",
41
42
  ]
42
- version = "0.0.0.dev0"
43
+ version = "0.0.0.dev2"
43
44
 
44
45
  [project.license]
45
46
  text = "MIT"