-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "stock-analysis-program"
version = "1.2.0"
description = "A Python-based toolkit for fetching and visualizing financial data and metrics for stocks."
readme = "README.md"
requires-python = ">=3.11,<4.0"
authors = [
{ name = "Thaddeus Thomas", email = "thaddeus.r.thomas@gmail.com" },
{ name = "Fernando McKenzie", email = "fernando.a.mckenzie@live.com" },
]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
"Development Status :: 4 - Beta"
]
dependencies = [
"yfinance>=0.2.37,<0.3.0",
"matplotlib>=3.8.3,<4.0.0",
"pandas>=2.2.1,<3.0.0",
]
[project.urls]
Homepage = "https://vcwtech.com/stock-analysis-program"
Repository = "https://github.com/visionary-code-works/stock-analysis-program"
Documentation = "https://github.com/visionary-code-works/stock-analysis-program/tree/main/docs"
[project.scripts]
stock-analysis = "stock_analysis_program.cli:main"
[tool.poetry]
packages = [
{ include = "stock_analysis_program", from = "src" },
]
[tool.poetry.group.dev.dependencies]
pytest = "^9.0.3"
[tool.pytest.ini_options]
pythonpath = ["src"]
norecursedirs = [".git", ".pytest_cache", "pytest-cache-files-*"]
addopts = "-p no:cacheprovider"
[build-system]
requires = ["poetry>=1.8.2"]
build-backend = "poetry.masonry.api"