forked from UBC-MDS/financial_analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (29 loc) · 885 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "financial_analyzer"
version = "0.2.4"
description = "Calculate basic metrics of sales data and visualize the results."
authors = ["Nicole Tu, Rafe Chang, Alan PowPowichrowski, Chris Gao"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.9"
altair = ">=5.2.0"
numpy = ">=1.26.3"
pandas = ">=2.2.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pytest-cov = "^4.1.0"
myst-nb = {version = "^1.0.0", python = "^3.9"}
sphinx-autoapi = "^3.0.0"
sphinx-rtd-theme = "^2.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version",
]
branch = "main"
changelog_file = "CHANGELOG.md"
build_command = "pip install poetry && poetry build"