-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.52 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
[tool.poetry]
name = "solvency2-data"
version = "0.2.4"
description = "Package for reading the Solvency 2 Risk-Free Interest Rate Term Structures from the zip-files on the EIOPA website and deriving the term structures for alternative extrapolations"
authors = ["Willem Jan Willemse <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["solvency2", "eiopa", "pandas"]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
homepage = "https://wjwillemse.github.io/solvency2-data"
documentation = "https://wjwillemse.github.io/solvency2-data"
repository = "https://github.com/wjwillemse/solvency2-data"
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
numpy = "^1.26.4"
pandas = "^1.5.3"
openpyxl = "^3.1.0"
configparser = "^6.0.1"
bs4 = "^0.0.2"
lxml = "^5.2.1"
requests = "^2.31.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.dev-dependencies]
ruff = "^0.3.5"
pre-commit = "^3.7.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.5.3"
mkdocs-material = "^9.5.17"
mkdocstrings-python = "^1.9.2"
[tool.setuptools_scm]