forked from jleclanche/python-iso18245
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (29 loc) · 849 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
[tool.poetry]
name = "iso18245"
version = "1.3.0"
description = "The ISO 18245 Merchant Category Codes database"
authors = ["Jerome Leclanche <[email protected]>"]
readme = "README.md"
repository = "https://github.com/jleclanche/python-iso18245"
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Accounting",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
mypy = "^1.2.0"
pre-commit = "^3.2.2"
types-setuptools = "^68.0.0.3"
[build-system]
requires = ["poetry_core>=1.5.0"]
build-backend = "poetry.masonry.api"
[tool.black]
use-tabs = true
[tool.mypy]
strict = true
warn_unused_configs = true