-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
32 lines (28 loc) · 914 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
[tool.poetry]
name = "mystocks"
version = "0.1.0"
description = "This is a simple PySide6 application that allows users to keep track of the stocks they own and their performance."
authors = ["Avinash <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/Avinash-Raj/stock-portfolio-app"
keywords = ["python", "pyside6", "finance", "GUI", "stocks", "pyqt6"]
[tool.poetry.dependencies]
python = "~3.11"
PySide6 = "6.5.0"
PySide6-Addons = "6.5.0"
PySide6-Essentials = "6.5.0"
QT-PyQt-PySide-Custom-Widgets = "0.6.4"
yfinance = "^0.2.18"
CurrencyConverter = "^0.17.7"
simplejson = "^3.19.1"
[tool.poetry.dev-dependencies]
black = "^23.3.0"
pylint = "^2.17.3"
[tool.poetry.scripts]
run_migrations = "mystocks.db.migrations:main"
mystocks = "mystocks.app:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
exclude = ["*.db"]