-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
51 lines (39 loc) · 1.17 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
[tool.poetry]
name = "currency_codes"
version = "23.06.04"
description = "Comprehensive Python package for managing currency codes across different types of assets"
authors = ["Artem Kuchumov <duketemon@gmail.com>"]
keywords = ["ISO 4217", "ISO-4217", "Currency Codes", "Currencies", "fiat", "crypto", "commodity"]
readme = "README.md"
homepage = "https://github.com/duketemon/currency_codes/blob/main/README.md#description"
repository = "https://github.com/duketemon/currency_codes"
[tool.poetry.dependencies]
python = "^3.7.2"
[tool.poetry.dev-dependencies]
pytest = "^7.3.1"
pytest-cov = "^4.0.0"
black = "^23.3.0"
isort = "5.10"
mypy = "^1.2.0"
pylint = "^2.17.4"
pre-commit = "*"
[tool.black]
line-length = 99
target-version = ["py311", "py310", "py39", "py38", "py37"]
[tool.isort]
profile = "black"
[tool.pylint.'MESSAGES CONTROL']
disable = ["missing-module-docstring"]
[tool.pytest.ini_options]
testpaths = "tests"
addopts = [
"--strict-markers",
"--verbose",
"--cov=currency_codes",
"--cov-branch",
"--cov-report=term-missing:skip-covered",
"--cov-fail-under=90"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"