-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
38 lines (36 loc) · 951 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 = "pyettj"
version = "0.3.3"
description = "Coletar e tratar dados de curvas de juros (ettj)."
authors = ["Rafael Rodrigues <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8.5"
pandas = [
{version = "<=1.5.3", python = "<=3.9"},
{version = ">=2.2.3", python = ">=3.10"}
]
requests = "^2.32.3"
lxml = "^5.3.0"
bs4 = "^0.0.2"
nelson-siegel-svensson = "^0.5.0"
numpy = [
{version = "<1.26.0", python = "<=3.9"},
{version = ">=1.26.0", python = ">=3.10"}
]
scipy = [
{version = ">=1.7,<1.9.1", python = "<3.9"},
{version = ">=1.13.1", python = ">=3.9"}
]
bizdays = [
{version = "<=1.0.13", python = "<=3.9"},
{version = ">=1.0.16", python = ">=3.10"}
]
matplotlib = [
{version = "<=3.7.1", python = "<=3.9"},
{version = ">=3.10.0", python = ">=3.10"}
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"