fastapi-initializer 1.0.1__tar.gz → 1.0.2__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.
- {fastapi_initializer-1.0.1 → fastapi_initializer-1.0.2}/PKG-INFO +18 -6
- {fastapi_initializer-1.0.1 → fastapi_initializer-1.0.2}/README.md +16 -4
- {fastapi_initializer-1.0.1 → fastapi_initializer-1.0.2}/pyproject.toml +3 -1
- {fastapi_initializer-1.0.1 → fastapi_initializer-1.0.2}/.gitignore +0 -0
- {fastapi_initializer-1.0.1 → fastapi_initializer-1.0.2}/.python-version +0 -0
- {fastapi_initializer-1.0.1 → fastapi_initializer-1.0.2}/LICENSE +0 -0
- {fastapi_initializer-1.0.1 → fastapi_initializer-1.0.2}/main.py +0 -0
- {fastapi_initializer-1.0.1 → fastapi_initializer-1.0.2}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: fastapi-initializer
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.2
|
|
4
4
|
Summary: An interactive CLI tool that scaffolds production-ready FastAPI projects with sensible defaults.
|
|
5
5
|
Project-URL: Homepage, https://github.com/DasunNethsara-04/fastapi-initializer
|
|
6
6
|
Project-URL: Repository, https://github.com/DasunNethsara-04/fastapi-initializer
|
|
@@ -8,7 +8,7 @@ Project-URL: Issues, https://github.com/DasunNethsara-04/fastapi-initializer/iss
|
|
|
8
8
|
Author-email: Dasun Nethsara <techsaralk.pro@gmail.com>
|
|
9
9
|
License: MIT
|
|
10
10
|
License-File: LICENSE
|
|
11
|
-
Keywords: boilerplate,cli,fastapi,initializer,project-generator,scaffold,template
|
|
11
|
+
Keywords: boilerplate,cli,fastapi,initializer,pipx,project-generator,scaffold,template,uv
|
|
12
12
|
Classifier: Development Status :: 4 - Beta
|
|
13
13
|
Classifier: Environment :: Console
|
|
14
14
|
Classifier: Framework :: FastAPI
|
|
@@ -55,16 +55,28 @@ Run a single command, answer a few prompts, and get a fully structured FastAPI p
|
|
|
55
55
|
|
|
56
56
|
## 📦 Installation
|
|
57
57
|
|
|
58
|
-
### Install
|
|
58
|
+
### Recommended: Install Globally
|
|
59
|
+
|
|
60
|
+
Install `fastapi-initializer` as a global CLI tool — no virtual environment needed. Just install once and use the `fastapi-init` command from anywhere, just like `uv`, `pip`, or `ruff`.
|
|
61
|
+
|
|
62
|
+
Using [pipx](https://pipx.pypa.io/):
|
|
59
63
|
|
|
60
64
|
```bash
|
|
61
|
-
|
|
65
|
+
pipx install fastapi-initializer
|
|
62
66
|
```
|
|
63
67
|
|
|
64
|
-
Or
|
|
68
|
+
Or using [uv](https://docs.astral.sh/uv/):
|
|
65
69
|
|
|
66
70
|
```bash
|
|
67
|
-
uv
|
|
71
|
+
uv tool install fastapi-initializer
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
### Alternative: Install with pip
|
|
75
|
+
|
|
76
|
+
If you prefer a traditional install inside a virtual environment:
|
|
77
|
+
|
|
78
|
+
```bash
|
|
79
|
+
pip install fastapi-initializer
|
|
68
80
|
```
|
|
69
81
|
|
|
70
82
|
### Install from Source (for development)
|
|
@@ -25,16 +25,28 @@ Run a single command, answer a few prompts, and get a fully structured FastAPI p
|
|
|
25
25
|
|
|
26
26
|
## 📦 Installation
|
|
27
27
|
|
|
28
|
-
### Install
|
|
28
|
+
### Recommended: Install Globally
|
|
29
|
+
|
|
30
|
+
Install `fastapi-initializer` as a global CLI tool — no virtual environment needed. Just install once and use the `fastapi-init` command from anywhere, just like `uv`, `pip`, or `ruff`.
|
|
31
|
+
|
|
32
|
+
Using [pipx](https://pipx.pypa.io/):
|
|
29
33
|
|
|
30
34
|
```bash
|
|
31
|
-
|
|
35
|
+
pipx install fastapi-initializer
|
|
32
36
|
```
|
|
33
37
|
|
|
34
|
-
Or
|
|
38
|
+
Or using [uv](https://docs.astral.sh/uv/):
|
|
35
39
|
|
|
36
40
|
```bash
|
|
37
|
-
uv
|
|
41
|
+
uv tool install fastapi-initializer
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### Alternative: Install with pip
|
|
45
|
+
|
|
46
|
+
If you prefer a traditional install inside a virtual environment:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
pip install fastapi-initializer
|
|
38
50
|
```
|
|
39
51
|
|
|
40
52
|
### Install from Source (for development)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "fastapi-initializer"
|
|
3
|
-
version = "1.0.
|
|
3
|
+
version = "1.0.2"
|
|
4
4
|
description = "An interactive CLI tool that scaffolds production-ready FastAPI projects with sensible defaults."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "MIT" }
|
|
@@ -16,6 +16,8 @@ keywords = [
|
|
|
16
16
|
"boilerplate",
|
|
17
17
|
"initializer",
|
|
18
18
|
"template",
|
|
19
|
+
"pipx",
|
|
20
|
+
"uv",
|
|
19
21
|
]
|
|
20
22
|
classifiers = [
|
|
21
23
|
"Development Status :: 4 - Beta",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|