my-cloud-devops-consulting 0.1.0__py3-none-any.whl

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.
@@ -0,0 +1,102 @@
1
+ Metadata-Version: 2.1
2
+ Name: my-cloud-devops-consulting
3
+ Version: 0.1.0
4
+ Summary: This is my consulting website for Cloud & DevOps services.
5
+ Home-page: https://github.com/Betrand1999/project-root
6
+ Author: Betrand Mutagha
7
+ Author-email: mmutagha@gmail.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.10
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Requires-Python: >=3.6
15
+ Description-Content-Type: text/markdown
16
+ Requires-Dist: Flask>=2.0
17
+ Requires-Dist: pymongo
18
+ Requires-Dist: werkzeug
19
+ Requires-Dist: requests
20
+
21
+ # Cloud & DevOps Consulting
22
+
23
+ This project is a website for Cloud & DevOps consulting services. It is built with **Flask** for the backend, **MongoDB** for the database, and **Docker** for containerization.
24
+
25
+ ## Features
26
+
27
+ - Cloud consulting services
28
+ - DevOps solutions
29
+ - Security & Compliance consulting
30
+
31
+ ## Prerequisites
32
+
33
+ Before getting started, make sure you have the following installed:
34
+
35
+ - [Python 3.10+](https://www.python.org/downloads/)
36
+ - [Docker](https://www.docker.com/products/docker-desktop)
37
+ - [Git](https://git-scm.com/)
38
+ - [MongoDB](https://www.mongodb.com/try/download/community) (if you're not using MongoDB Atlas)
39
+ - [pip](https://pip.pypa.io/en/stable/)
40
+ - [twine](https://twine.readthedocs.io/en/stable/) (for uploading to PyPI)
41
+
42
+ ## Installation
43
+
44
+ ### 1. Clone the Repository
45
+
46
+ Clone this repository to your local machine using Git:
47
+ ```bash
48
+ git clone https://github.com/Betrand1999/project-root.git
49
+ cd project-root
50
+ ,,,
51
+ ####
52
+ Setup Python Environment
53
+ python3 -m venv venv
54
+ source venv/bin/activate # For Windows use `venv\Scripts\activate`
55
+ #####
56
+
57
+ ####
58
+ Install Dependencies
59
+ pip install -r requirements.txt
60
+ ###
61
+
62
+
63
+ ###
64
+ Set Up Python Package Build Tools
65
+ The setup.py file is where you define the details of your package, including its dependencies, description, version, and more.
66
+ ###
67
+
68
+ ###
69
+ MANIFEST.in
70
+ he MANIFEST.in file ensures that the necessary files are included when you build your package.
71
+ ###
72
+
73
+ ###
74
+ Build the Package
75
+ python setup.py sdist bdist_wheel
76
+ ###
77
+
78
+ ###
79
+ Upload to PyPI (Optional)
80
+ If you want to distribute your package on PyPI, you'll need a PyPI account. After registering and logging in to PyPI, use twine to upload the distribution files.
81
+ Install Twine: pip install twine
82
+ Upload the Package:
83
+ twine upload dist/*
84
+ ###
85
+
86
+ ##################################################################
87
+ pip install wheel
88
+ #################################################################
89
+ To see packages OutPUT
90
+ ls dist/
91
+ project-root-0.1.0.tar.gz
92
+ project_root-0.1.0-py3-none-any.whl
93
+ ###################################################################
94
+
95
+ pip install dist/project_root-0.1.0-py3-none-any.whl
96
+ ####################################################################
97
+
98
+ pip install twine
99
+ what is twine: Twine is a utility for publishing Python packages on the Python Package Index (PyPI)
100
+ #####################################################################
101
+
102
+
@@ -0,0 +1,4 @@
1
+ my_cloud_devops_consulting-0.1.0.dist-info/METADATA,sha256=BkENJ4nD-B9wYyPDfs8_w-LNVQRCyB3L4sAhtyqX2Sg,3012
2
+ my_cloud_devops_consulting-0.1.0.dist-info/WHEEL,sha256=bFJAMchF8aTQGUgMZzHJyDDMPTO3ToJ7x23SLJa1SVo,92
3
+ my_cloud_devops_consulting-0.1.0.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
4
+ my_cloud_devops_consulting-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.45.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+