fastogram 0.0.1__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.
fastogram-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fastogram
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Opinionated FastAPI + Aiogram project generator (coming soon)
|
|
5
|
+
Author-email: Abubeker Afdel <ibnuafdel@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.10
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Fastogram
|
|
11
|
+
|
|
12
|
+
Opinionated FastAPI + Aiogram project generator.
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install fastogram
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
fastogram
|
|
24
|
+
fastogram new <project_name>
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Note
|
|
28
|
+
|
|
29
|
+
This project is currently under development. Project scaffolding will be available in an upcoming release.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# Fastogram
|
|
2
|
+
|
|
3
|
+
Opinionated FastAPI + Aiogram project generator.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install fastogram
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
fastogram
|
|
15
|
+
fastogram new <project_name>
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Note
|
|
19
|
+
|
|
20
|
+
This project is currently under development. Project scaffolding will be available in an upcoming release.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "fastogram"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Opinionated FastAPI + Aiogram project generator (coming soon)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "Abubeker Afdel", email = "ibnuafdel@gmail.com"}
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.scripts]
|
|
17
|
+
fastogram = "fastogram.cli:main"
|
|
18
|
+
|
|
19
|
+
[tool.hatch.build.targets.wheel]
|
|
20
|
+
packages = ["src/fastogram"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.1"
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
"""Fastogram CLI entry point."""
|
|
2
|
+
|
|
3
|
+
import argparse
|
|
4
|
+
import sys
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
def main() -> None:
|
|
8
|
+
parser = argparse.ArgumentParser(prog="fastogram")
|
|
9
|
+
subparsers = parser.add_subparsers(dest="command", help="Available commands")
|
|
10
|
+
|
|
11
|
+
new_parser = subparsers.add_parser("new", help="Create a new project")
|
|
12
|
+
new_parser.add_argument("project_name", nargs="?", help="Name of the project")
|
|
13
|
+
|
|
14
|
+
parser.parse_args()
|
|
15
|
+
|
|
16
|
+
print(
|
|
17
|
+
"Fastogram is currently under development.\n"
|
|
18
|
+
"Project scaffolding will be available in an upcoming release."
|
|
19
|
+
)
|
|
20
|
+
sys.exit(0)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
if __name__ == "__main__":
|
|
24
|
+
main()
|