-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 952 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
[project]
name = "oda_data"
version = "1.5.3"
description = "A python package to work with Official Development Assistance data from the OECD DAC."
readme = "README.md"
authors = [{name = "Jorge Rivera", email = "[email protected]"}]
requires-python = ">=3.10, <4.0"
dependencies = [
"pandas >=2",
"bblocks >=1",
"requests >=2",
"lxml >=5",
"pyarrow >=14, <17",
"thefuzz >=0.22.1",
"oda-reader >=1",
"beautifulsoup4 >=4.12.3",
"selenium >=4.20.0",
"webdriver-manager >=4.0.1",
"pydeflate >=2.0.1"
]
[project.optional-dependencies]
dev = [
"black >=24",
"pytest >=8",
"pytest-cov >=4.0.0",
"bump2version >=1.0.1",
"pytest-mock >=3.10.0"
]
[project.urls]
Homepage = "https://github.com/ONEcampaign/oda_data_package"
Bug_Tracker = "https://github.com/ONEcampaign/oda_data_package/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"