You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
442 B
23 lines
442 B
[tool.poetry] |
|
name = "portfolio-manager" |
|
version = "0.1.0" |
|
description = "" |
|
authors = ["Tom Nordal <tnordal@gmail.com>"] |
|
readme = "README.md" |
|
|
|
[tool.poetry.dependencies] |
|
python = "^3.12" |
|
click = "^8.1.7" |
|
|
|
|
|
[tool.poetry.group.dev.dependencies] |
|
pylint = "^3.2.6" |
|
black = "^24.8.0" |
|
pytest = "^8.3.2" |
|
|
|
[build-system] |
|
requires = ["poetry-core"] |
|
build-backend = "poetry.core.masonry.api" |
|
|
|
[tool.poetry.scripts] |
|
pm = "portfolio_manager.scr.cli:cli"
|
|
|