-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (32 loc) · 926 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
37
38
[tool.poetry]
name = "python-invest"
version = "0.2.1-alpha"
description = "Package to financial data extraction with Python."
authors = ["Claudio Lima <[email protected]>"]
readme = "README.md"
packages = [{include = "python_invest"}]
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^1.5.3"
httpx = "^0.23.3"
typer = "^0.7.0"
rich = "^13.3.3"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocs-material = "^9.1.0"
mkdocstrings = {extras = ["python"], version = "^0.20.0"}
[tool.poetry.group.dev.dependencies]
ipython = "^8.11.0"
pytest = "^7.2.1"
pre-commit = "^3.1.1"
pytest-cov = "^4.0.0"
isort = "^5.12.0"
blue = "^0.9.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.urls]
"Documentation" = "https://pyinvest.readthedocs.io/en/latest/"
"GitHub" = "https://github.com/clcosta/python-invest"
[tool.poetry.scripts]
pinv = "python_invest.cli:cli"