-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (36 loc) · 915 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
39
40
41
[tool.poetry]
name = "bblocks_data_importers"
version = "0.2.1"
description = "A package to import data"
authors = ["The ONE Campaign", "Luca Picci", "Jorge Rivera"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pandas = "^2.2.3"
openpyxl = "^3.1.5"
pyarrow = ">=15.0.0"
imf-reader = "^1.1.0"
wbgapi = "^1.0.12"
country-converter = "^1.2"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
pytest = "^8.3.2"
sphinx = "^8.0.2"
myst-nb = "^1.1.1"
autoapi = "^2.0.1"
sphinx-autoapi = "^3.2.1"
pytest-cov = "^5.0.0"
sphinx-book-theme = "^1.1.3"
xlsxwriter = "^3.2.0"
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version",
]
branch = "main"
changelog_file = "CHANGELOG.md"
build_command = "pip install poetry && poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"