-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
30 lines (26 loc) · 817 Bytes
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
[tool.poetry]
name = "dinero"
version = "0.4.0"
description = "Dinero is a library for working with monetary values in Python."
license = "MIT"
authors = ["Carlos Montecinos Geisse <carlos@pythoncheatsheet.org>"]
readme = "README.md"
repository = "https://github.com/wilfredinni/dinero"
keywords = ["python3", "money", "decimals", "calculations", "currency"]
[tool.poetry.dependencies]
python = "^3.10"
typing-extensions = "^4.12.2"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
mypy = "^1.13.0"
ipykernel = "^6.29.5"
pandas = "^2.2.3"
coverage = "^7.6.4"
pytest-cov = "^6.0.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.6.1"
mkdocstrings = {extras = ["python"], version = "^0.26.2"}
mkdocs-material = "^9.5.43"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"