Spaces:
Sleeping
Sleeping
add: files for hf spaces deployment 2
Browse files- README.md +25 -6
- requirements.txt +3 -0
README.md
CHANGED
@@ -1,14 +1,33 @@
|
|
1 |
---
|
2 |
title: Startup Equity Calculator
|
3 |
-
emoji:
|
4 |
-
colorFrom:
|
5 |
-
colorTo:
|
6 |
sdk: gradio
|
7 |
-
sdk_version:
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
11 |
-
short_description: Allows you to calculate the value of your equity at a startu
|
12 |
---
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
title: Startup Equity Calculator
|
3 |
+
emoji: ๐
|
4 |
+
colorFrom: blue
|
5 |
+
colorTo: green
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 4.44.0
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
license: mit
|
|
|
11 |
---
|
12 |
|
13 |
+
# Startup Equity Calculator
|
14 |
+
|
15 |
+
A comprehensive tool to calculate and compare the value of startup stock options across multiple exit scenarios.
|
16 |
+
|
17 |
+
## Features
|
18 |
+
|
19 |
+
- ๐ **Multi-scenario analysis** - Compare conservative, base case, and optimistic exits
|
20 |
+
- โ๏ธ **Liquidation preferences** - Handles participating vs non-participating preferred stock
|
21 |
+
- ๐ **Visual analytics** - Interactive charts showing option values and ROI
|
22 |
+
- ๐งฎ **Detailed calculations** - Liquidation waterfall showing how proceeds are distributed
|
23 |
+
|
24 |
+
## How to Use
|
25 |
+
|
26 |
+
1. **Enter your cap table details**: Total shares, your options, strike price
|
27 |
+
2. **Add funding rounds**: Include any Seed, Series A, or Series B rounds
|
28 |
+
3. **Define exit scenarios**: Create multiple scenarios to compare outcomes
|
29 |
+
4. **Analyze results**: Review the comparison table and visual charts
|
30 |
+
|
31 |
+
## Disclaimer
|
32 |
+
|
33 |
+
This tool is for educational purposes only. Consult with financial and tax professionals before making investment decisions.
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
gradio==5.39.0
|
2 |
+
plotly==6.2.0
|
3 |
+
pandas==2.3.1
|