-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (37 loc) · 946 Bytes
/
pyproject.toml
File metadata and controls
44 lines (37 loc) · 946 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
39
40
41
42
43
44
[tool.poetry]
name = "mifiel"
version = "1.0.0"
description = "Python API Client library for mifiel.com"
authors = ["Genaro Madrid <genmadrid@gmail.com>"]
readme = "README.md"
repository = "http://github.com/mifiel/python-api-client"
documentation = 'http://docs.mifiel.com/?python#introduction'
packages = [
{ include = "mifiel" },
{ include = "mifiel/api_auth" },
]
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
requests = "^2.32.5"
[tool.poetry.group.dev.dependencies]
coverage = "^7.11.0"
pypandoc = "^1.15"
pytest = "^9.0.3"
pytest-cov = "^7.0.0"
responses = "^0.26.0"
ruff = "^0.15.11"
[tool.pytest.ini_options]
testpaths = ["test"]
python_files = ["test_*.py"]
[tool.coverage.run]
source = ["mifiel"]
branch = true
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.ruff]
line-length = 100
target-version = "py310"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"