-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 887 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
31
32
33
34
35
36
37
38
[tool.poetry]
name = "fintoc"
version = "2.18.0"
description = "The official Python client for the Fintoc API."
authors = ["Daniel Leal <daniel@fintoc.com>", "Nebil Kawas <nebil@uc.cl>"]
maintainers = ["Daniel Leal <daniel@fintoc.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://fintoc.com/"
repository = "https://github.com/fintoc-com/fintoc-python"
exclude = [
".github",
".coveragerc",
".flake8",
".pylintrc",
"Makefile",
"scripts",
"tests"
]
[tool.poetry.dependencies]
python = "^3.7"
httpx = ">=0.16, < 1.0"
cryptography = "<44.0.0"
[tool.poetry.dev-dependencies]
black = "^22.10.0"
flake8 = "^3.8.4"
isort = "^5.6.4"
pylint = "^2.6.0"
pytest = "^6.1.1"
pytest-cov = "^2.12.1"
[tool.poetry.urls]
"Issue Tracker" = "https://github.com/fintoc-com/fintoc-python/issues"
[tool.poetry.group.test.dependencies]
freezegun = "^1.5.1"