Skip to content

Commit 9e9e497

Browse files
update structure
1 parent 7e2f540 commit 9e9e497

14 files changed

Lines changed: 9 additions & 9 deletions

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ classifiers = [
1515
"Topic :: Office/Business :: Financial :: Investment",
1616
"Development Status :: 4 - Beta"
1717
]
18+
packages = [
19+
{ include = "stock_analysis_program", from = "src" },
20+
]
1821

1922
[tool.poetry.dependencies]
20-
python = "^3.7"
21-
yfinance = "^0.1.63"
22-
matplotlib = "^3.3.4"
23-
pandas = "^1.2.4"
23+
python = "^3.11"
24+
yfinance = "^0.2.33"
25+
matplotlib = "^3.8.0"
26+
pandas = "^2.1.1"
2427

2528
[tool.poetry.dev-dependencies]
26-
pytest = "^6.2.2"
29+
pytest = "^7.4.3"
2730

2831
[build-system]
29-
requires = ["poetry>=0.12"]
32+
requires = ["poetry>=1.71"]
3033
build-backend = "poetry.masonry.api"
31-
32-
[tool.poetry.packages]
33-
include = [{ from = "src", include = ["**/*"] }]

src/fetcher/__init__.py renamed to src/stock_analysis_program/fetcher/__init__.py

File renamed without changes.

src/fetcher/financial_metrics_fetcher.py renamed to src/stock_analysis_program/fetcher/financial_metrics_fetcher.py

File renamed without changes.

src/fetcher/revenue_growth_fetcher.py renamed to src/stock_analysis_program/fetcher/revenue_growth_fetcher.py

File renamed without changes.

src/fetcher/stock_data_fetcher.py renamed to src/stock_analysis_program/fetcher/stock_data_fetcher.py

File renamed without changes.

src/fetcher/stock_summary_fetcher.py renamed to src/stock_analysis_program/fetcher/stock_summary_fetcher.py

File renamed without changes.

src/plotter/__init__.py renamed to src/stock_analysis_program/plotter/__init__.py

File renamed without changes.

src/plotter/current_prices_ticker_display.py renamed to src/stock_analysis_program/plotter/current_prices_ticker_display.py

File renamed without changes.

src/plotter/financial_metrics_plotter.py renamed to src/stock_analysis_program/plotter/financial_metrics_plotter.py

File renamed without changes.

0 commit comments

Comments
 (0)