-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
70 lines (63 loc) · 1.32 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[tool.poetry]
name = "utr"
version = "1.2.0"
description = "A python library to interact with UTR API"
authors = [
"Luis Rueda <userlerueda@gmail.com>"
]
license = "GPL-3.0-or-later"
include = ["CHANGELOG.md", "LICENSE"]
readme = "README.md"
repository = "https://github.com/userlerueda/utr"
[tool.poetry.dependencies]
python = "^3.9"
daiquiri = "^3.2.1"
requests = "^2.28.1"
pandas = "^1.4.4"
openpyxl = "^3.0.10"
tabulate = "^0.8.10"
click = "^8.1.3"
pydantic = "^1.10.2"
[tool.poetry.dev-dependencies]
isort = "^5.10.1"
black = "^22.8.0"
pytest = "^7.1.3"
ipython = "^8.5.0"
pytest-cov = "^3.0.0"
[tool.pytest.ini_options]
addopts = "-svv --cov-report term-missing --cov=utr"
testpaths = ["tests"]
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| \.docker
| \*.egg-info
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.isort]
profile = "black"
line_length = 79
force_grid_wrap = 0
multi_line_output = 3
use_parentheses = true
include_trailing_comma = true
ensure_newline_before_comments = true
[tool.poetry.scripts]
utr = "utr.cli.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.8"]
build-backend = "poetry.core.masonry.api"