backant-cli 0.7.3__tar.gz → 0.7.4__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.
Files changed (61) hide show
  1. backant_cli-0.7.4/LICENSE +21 -0
  2. {backant_cli-0.7.3 → backant_cli-0.7.4}/PKG-INFO +17 -5
  3. {backant_cli-0.7.3 → backant_cli-0.7.4}/README.md +10 -3
  4. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/utils/telemetry.py +1 -1
  5. {backant_cli-0.7.3 → backant_cli-0.7.4}/backant_cli.egg-info/PKG-INFO +17 -5
  6. {backant_cli-0.7.3 → backant_cli-0.7.4}/backant_cli.egg-info/SOURCES.txt +1 -0
  7. {backant_cli-0.7.3 → backant_cli-0.7.4}/setup.py +4 -2
  8. {backant_cli-0.7.3 → backant_cli-0.7.4}/MANIFEST.in +0 -0
  9. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/__init__.py +0 -0
  10. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/cli.py +0 -0
  11. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/__init__.py +0 -0
  12. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/generate.py +0 -0
  13. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/generate_schema.py +0 -0
  14. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/__init__.py +0 -0
  15. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/.env +0 -0
  16. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/.github/workflows/build_and_push_to_ecr.yml +0 -0
  17. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/.gitignore +0 -0
  18. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/Dockerfile +0 -0
  19. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/README.md +0 -0
  20. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/.env.testing +0 -0
  21. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/.gitattributes +0 -0
  22. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/__init__.py +0 -0
  23. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/apis/__init__.py +0 -0
  24. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/apis/aws/AWSClient.py +0 -0
  25. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/app.py +0 -0
  26. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/decorators/token_required.py +0 -0
  27. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/DBSession.py +0 -0
  28. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/__init__.py +0 -0
  29. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/execution_tracking/APIException.py +0 -0
  30. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/execution_tracking/Logger.py +0 -0
  31. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/execution_tracking/__init__.py +0 -0
  32. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/functions/extract_fields.py +0 -0
  33. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/functions/log_directory_contents.py +0 -0
  34. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/functions/update_dict.py +0 -0
  35. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/functions/update_measurement.py +0 -0
  36. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/helper/functions/validation_error.py +0 -0
  37. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/models/Default_model.py +0 -0
  38. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/models/__init__.py +0 -0
  39. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/repositories/Repository.py +0 -0
  40. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/repositories/__init__.py +0 -0
  41. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/repositories/default_repository.py +0 -0
  42. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/routes/__init__.py +0 -0
  43. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/routes/default_route.py +0 -0
  44. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/schemas/PostDefault_schema.py +0 -0
  45. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/schemas/__init__.py +0 -0
  46. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/services/__init__.py +0 -0
  47. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/services/default_service.py +0 -0
  48. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/startup/Alchemy.py +0 -0
  49. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/startup/Environment.py +0 -0
  50. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/api/startup/__init__.py +0 -0
  51. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/docker-compose-prod.yml +0 -0
  52. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/docker-compose.yml +0 -0
  53. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/pylintrc +0 -0
  54. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/commands/templates/base/requirements.txt +0 -0
  55. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/utils/__init__.py +0 -0
  56. {backant_cli-0.7.3 → backant_cli-0.7.4}/ant/utils/report_builder.py +0 -0
  57. {backant_cli-0.7.3 → backant_cli-0.7.4}/backant_cli.egg-info/dependency_links.txt +0 -0
  58. {backant_cli-0.7.3 → backant_cli-0.7.4}/backant_cli.egg-info/entry_points.txt +0 -0
  59. {backant_cli-0.7.3 → backant_cli-0.7.4}/backant_cli.egg-info/requires.txt +0 -0
  60. {backant_cli-0.7.3 → backant_cli-0.7.4}/backant_cli.egg-info/top_level.txt +0 -0
  61. {backant_cli-0.7.3 → backant_cli-0.7.4}/setup.cfg +0 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 BackAnt
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -1,14 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: backant-cli
3
- Version: 0.7.3
3
+ Version: 0.7.4
4
4
  Summary: A CLI tool to generate backant backend projects
5
- Home-page: https://github.com/backant/backant-cli
5
+ Home-page: https://github.com/backant-io/backant-cli
6
6
  Author: Pavel Hegler
7
7
  Author-email: business@hegler.tech
8
+ License: MIT
8
9
  Classifier: Programming Language :: Python :: 3
9
10
  Classifier: Operating System :: OS Independent
11
+ Classifier: License :: OSI Approved :: MIT License
10
12
  Requires-Python: >=3.6
11
13
  Description-Content-Type: text/markdown
14
+ License-File: LICENSE
12
15
  Requires-Dist: click
13
16
  Requires-Dist: pydantic>=2.0
14
17
  Requires-Dist: posthog>=3.0.0
@@ -22,14 +25,19 @@ Dynamic: classifier
22
25
  Dynamic: description
23
26
  Dynamic: description-content-type
24
27
  Dynamic: home-page
28
+ Dynamic: license
29
+ Dynamic: license-file
25
30
  Dynamic: provides-extra
26
31
  Dynamic: requires-dist
27
32
  Dynamic: requires-python
28
33
  Dynamic: summary
29
34
 
30
- # Backant CLI
35
+ # BackAnt CLI
31
36
 
32
- Backant CLI is a powerful Linux native command-line interface designed to streamline the development of Flask-based REST APIs. It automates the generation of a complete and scalable project structure, allowing developers to focus on business logic rather than boilerplate code.
37
+ [![PyPI version](https://badge.fury.io/py/backant-cli.svg)](https://badge.fury.io/py/backant-cli)
38
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
39
+
40
+ BackAnt CLI is a powerful command-line interface designed to streamline the development of Flask-based REST APIs. It automates the generation of a complete and scalable project structure, allowing developers to focus on business logic rather than boilerplate code.
33
41
 
34
42
  ## Key Features
35
43
 
@@ -201,7 +209,7 @@ Contributions are welcome! If you have any ideas, suggestions, or bug reports, p
201
209
 
202
210
  1. **Clone the repository:**
203
211
  ```bash
204
- git clone https://github.com/backant/backant-cli.git
212
+ git clone https://github.com/backant-io/backant-cli.git
205
213
  ```
206
214
  2. **Create a virtual environment:**
207
215
  ```bash
@@ -218,3 +226,7 @@ Contributions are welcome! If you have any ideas, suggestions, or bug reports, p
218
226
  ```
219
227
 
220
228
  Now you can run the CLI locally using the `ant` command.
229
+
230
+ ## License
231
+
232
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
@@ -1,6 +1,9 @@
1
- # Backant CLI
1
+ # BackAnt CLI
2
2
 
3
- Backant CLI is a powerful Linux native command-line interface designed to streamline the development of Flask-based REST APIs. It automates the generation of a complete and scalable project structure, allowing developers to focus on business logic rather than boilerplate code.
3
+ [![PyPI version](https://badge.fury.io/py/backant-cli.svg)](https://badge.fury.io/py/backant-cli)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
6
+ BackAnt CLI is a powerful command-line interface designed to streamline the development of Flask-based REST APIs. It automates the generation of a complete and scalable project structure, allowing developers to focus on business logic rather than boilerplate code.
4
7
 
5
8
  ## Key Features
6
9
 
@@ -172,7 +175,7 @@ Contributions are welcome! If you have any ideas, suggestions, or bug reports, p
172
175
 
173
176
  1. **Clone the repository:**
174
177
  ```bash
175
- git clone https://github.com/backant/backant-cli.git
178
+ git clone https://github.com/backant-io/backant-cli.git
176
179
  ```
177
180
  2. **Create a virtual environment:**
178
181
  ```bash
@@ -189,3 +192,7 @@ Contributions are welcome! If you have any ideas, suggestions, or bug reports, p
189
192
  ```
190
193
 
191
194
  Now you can run the CLI locally using the `ant` command.
195
+
196
+ ## License
197
+
198
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
@@ -33,7 +33,7 @@ _session_telemetry_disabled = False
33
33
  POSTHOG_API_KEY = os.environ.get(
34
34
  "BACKANT_POSTHOG_KEY", "phc_myKzNtyyxG0CUY9IXMKdo6q1ve5kDxVYEddtXrQ0ZNP"
35
35
  )
36
- POSTHOG_HOST = os.environ.get("BACKANT_POSTHOG_HOST", "https://us.i.posthog.com")
36
+ POSTHOG_HOST = os.environ.get("BACKANT_POSTHOG_HOST", "https://t.backant.io")
37
37
  CONFIG_DIR = Path.home() / ".backant"
38
38
  CONFIG_FILE = CONFIG_DIR / "config.json"
39
39
 
@@ -1,14 +1,17 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: backant-cli
3
- Version: 0.7.3
3
+ Version: 0.7.4
4
4
  Summary: A CLI tool to generate backant backend projects
5
- Home-page: https://github.com/backant/backant-cli
5
+ Home-page: https://github.com/backant-io/backant-cli
6
6
  Author: Pavel Hegler
7
7
  Author-email: business@hegler.tech
8
+ License: MIT
8
9
  Classifier: Programming Language :: Python :: 3
9
10
  Classifier: Operating System :: OS Independent
11
+ Classifier: License :: OSI Approved :: MIT License
10
12
  Requires-Python: >=3.6
11
13
  Description-Content-Type: text/markdown
14
+ License-File: LICENSE
12
15
  Requires-Dist: click
13
16
  Requires-Dist: pydantic>=2.0
14
17
  Requires-Dist: posthog>=3.0.0
@@ -22,14 +25,19 @@ Dynamic: classifier
22
25
  Dynamic: description
23
26
  Dynamic: description-content-type
24
27
  Dynamic: home-page
28
+ Dynamic: license
29
+ Dynamic: license-file
25
30
  Dynamic: provides-extra
26
31
  Dynamic: requires-dist
27
32
  Dynamic: requires-python
28
33
  Dynamic: summary
29
34
 
30
- # Backant CLI
35
+ # BackAnt CLI
31
36
 
32
- Backant CLI is a powerful Linux native command-line interface designed to streamline the development of Flask-based REST APIs. It automates the generation of a complete and scalable project structure, allowing developers to focus on business logic rather than boilerplate code.
37
+ [![PyPI version](https://badge.fury.io/py/backant-cli.svg)](https://badge.fury.io/py/backant-cli)
38
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
39
+
40
+ BackAnt CLI is a powerful command-line interface designed to streamline the development of Flask-based REST APIs. It automates the generation of a complete and scalable project structure, allowing developers to focus on business logic rather than boilerplate code.
33
41
 
34
42
  ## Key Features
35
43
 
@@ -201,7 +209,7 @@ Contributions are welcome! If you have any ideas, suggestions, or bug reports, p
201
209
 
202
210
  1. **Clone the repository:**
203
211
  ```bash
204
- git clone https://github.com/backant/backant-cli.git
212
+ git clone https://github.com/backant-io/backant-cli.git
205
213
  ```
206
214
  2. **Create a virtual environment:**
207
215
  ```bash
@@ -218,3 +226,7 @@ Contributions are welcome! If you have any ideas, suggestions, or bug reports, p
218
226
  ```
219
227
 
220
228
  Now you can run the CLI locally using the `ant` command.
229
+
230
+ ## License
231
+
232
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
@@ -1,3 +1,4 @@
1
+ LICENSE
1
2
  MANIFEST.in
2
3
  README.md
3
4
  setup.py
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="backant-cli",
5
- version="0.7.3",
5
+ version="0.7.4",
6
6
  packages=find_packages(),
7
7
  include_package_data=True,
8
8
  install_requires=["click", "pydantic>=2.0", "posthog>=3.0.0"],
@@ -19,10 +19,12 @@ setup(
19
19
  description="A CLI tool to generate backant backend projects",
20
20
  long_description=open("README.md").read(),
21
21
  long_description_content_type="text/markdown",
22
- url="https://github.com/backant/backant-cli",
22
+ url="https://github.com/backant-io/backant-cli",
23
+ license="MIT",
23
24
  classifiers=[
24
25
  "Programming Language :: Python :: 3",
25
26
  "Operating System :: OS Independent",
27
+ "License :: OSI Approved :: MIT License",
26
28
  ],
27
29
  python_requires=">=3.6",
28
30
  )
File without changes
File without changes
File without changes
File without changes