-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 1.12 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
[tool.poetry]
name = "pydeflate"
version = "2.1.0"
description = "Package to convert current prices figures to constant prices and vice versa"
authors = ["Jorge Rivera <[email protected]>"]
license = "MIT"
readme = "README.md"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
packages = [
{ include = "pydeflate" },
]
[tool.poetry.dependencies]
python = ">=3.10, <4.0"
pandas = "^2"
pyarrow = ">14"
imf-reader = "^1.1.0"
hdx-python-country = "^3.8.1"
oda-reader = "^1.0.0"
wbgapi = "^1.0.12"
[tool.poetry.dev-dependencies]
bump2version = "^1.0.1"
black = "^24"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"