-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
54 lines (44 loc) · 1.14 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "varfxi"
version = "0.0.2"
description = "Volatility based estimation for FX interventions"
authors = ["romainlafarguette <romain.lafarguette@gmail.com>", "amineraboun <amineraboun@gmail.com>"]
repository ="https://github.com/romainlafarguette/varfxi"
homepage ="https://github.com/romainlafarguette/varfxi"
readme = "README.md"
keywords = ["var", "garch"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = ">=3.9"
pandas = "^1.5.3"
numpy = "^1.24.2"
arch = "^5.3.1"
matplotlib = "^3.7.1"
# Dev dependencies
seaborn = "^0.12.2"
tqdm = "^4.65.0"
openpyxl = "^3.1.2"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
pytest-cov = "^3.0"
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = [
"tests",
]
[tool.pylint]
[tool.pylint."FORMAT"]
max-line-length = 120
max-args = 5
# Documentation dependencies
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
Sphinx = "^5.1.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"