-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
executable file
·35 lines (33 loc) · 961 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
[tool.poetry]
name = "comparar_fundos_br"
version = "0.1.2"
description = "Obter dados de fundos de investimento"
authors = ["Rafael Rodrigues <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/rafa-rod/comparar_fundos_br.git"
[tool.poetry.dependencies]
python = "^3.8.5"
pandas = [
{version = ">=1.3.0, <=1.5.3", python = "<=3.9"},
{version = ">=2.1.0", python = ">=3.10"}
]
requests = "^2.31"
numpy = [
{version = ">=1.24.4, <1.26.0", python = "<=3.9"},
{version = ">=1.26.0", python = ">=3.10"}
]
scipy = [
{version = ">=1.5.1,<=1.10.1", python = "<=3.9"},
{version = ">=1.11.0", python = ">=3.10"}
]
matplotlib = [
{version = "<=3.7.1", python = "<=3.9"},
{version = ">=3.10.0", python = ">=3.10"}
]
pyettj = [
{version = "<=0.3.2", python = "<=3.9"},
{version = ">=0.3.3", python = ">=3.10"}
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"