forked from fintoc-com/fintoc-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 800 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 800 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
[tool.poetry]
name = "fintoc"
version = "2.2.2"
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.6"
httpx = ">=0.16, < 1.0"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
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"