Skip to content

Commit 4080d0b

Browse files
committed
chore: add MIT license, move screenshots section and add footer attribution
1 parent 8331978 commit 4080d0b

File tree

3 files changed

+37
-7
lines changed

3 files changed

+37
-7
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Yash
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.

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,14 @@ According to Google Cloud's research, organizations with a comprehensive AI stra
1818

1919
This application implements this prioritization framework as an interactive tool.
2020

21+
### Screenshots
22+
23+
#### AI Strategy Matrix Visualization
24+
![AI Strategy Matrix](img/AI%20Strategy%20Matrix.png)
25+
26+
#### Data Management Interface
27+
![Add, Import, Export, Delete Use Cases](img/Add,%20Import,%20Export,%20Delete%20Use%20Cases.png)
28+
2129
## Key Features
2230

2331
- **Interactive Input Form**: Easily add new AI use cases with ratings for actionability, feasibility, and business value
@@ -99,13 +107,6 @@ uv run -- pylint *.py tests/*.py # Lint code
99107
4. **Export Your Work**: Download your data as a CSV file for future use
100108
5. **Import Previous Work**: Upload a previously saved CSV file
101109

102-
### Screenshots
103-
104-
#### AI Strategy Matrix Visualization
105-
![AI Strategy Matrix](img/AI%20Strategy%20Matrix.png)
106-
107-
#### Data Management Interface
108-
![Add, Import, Export, Delete Use Cases](img/Add,%20Import,%20Export,%20Delete%20Use%20Cases.png)
109110

110111
## Project Structure
111112

main.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# AI Strategy Matrix Builder
2+
# Created by Yash
3+
# MIT License
4+
15
import streamlit as st
26
import pandas as pd
37
import numpy as np
@@ -233,3 +237,7 @@
233237
columns=["Name", "Actionability", "Feasibility", "Business Value"]
234238
)
235239
st.rerun()
240+
241+
# Add footer with attribution
242+
st.markdown("---")
243+
st.caption("© 2025 Created by Yash | MIT License")

0 commit comments

Comments
 (0)