Skip to content

Commit 7e2f540

Browse files
update toml file
1 parent 7d88939 commit 7e2f540

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
[tool.poetry]
22
name = "stock-analysis-program"
3-
version = "1.0.2"
3+
version = "1.0.0"
44
description = "A Python-based toolkit for fetching and visualizing financial data and metrics for stocks."
55
authors = ["Thaddeus Thomas <thaddeus.r.thomas@gmail.com>"]
66
license = "MIT"
7-
8-
# Optional: if the project is available on a URL or is a part of a larger project.
97
homepage = "https://github.com/visionary-code-works/stock-analysis-program"
108
repository = "https://github.com/visionary-code-works/stock-analysis-program"
119
documentation = "https://github.com/visionary-code-works/stock-analysis-program/docs"
12-
13-
# Classifiers help users find your project by categorizing it.
1410
classifiers = [
1511
"Programming Language :: Python :: 3",
1612
"License :: OSI Approved :: MIT License",
@@ -21,7 +17,7 @@ classifiers = [
2117
]
2218

2319
[tool.poetry.dependencies]
24-
python = "^3.8"
20+
python = "^3.7"
2521
yfinance = "^0.1.63"
2622
matplotlib = "^3.3.4"
2723
pandas = "^1.2.4"
@@ -32,3 +28,6 @@ pytest = "^6.2.2"
3228
[build-system]
3329
requires = ["poetry>=0.12"]
3430
build-backend = "poetry.masonry.api"
31+
32+
[tool.poetry.packages]
33+
include = [{ from = "src", include = ["**/*"] }]

0 commit comments

Comments
 (0)