-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (59 loc) · 1.79 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
[tool.poetry]
name = "pylinkandtrack"
version = "0.1.1"
description = "Uma interface amigável para a API de rastreamento de encomendas dos Correios desenvolvida pela Link & Track."
authors = ["diaszano <[email protected]>"]
readme = "README.md"
license = "MIT"
packages = [{include="linkandtrack"}]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: Portuguese (Brazilian)",
"Programming Language :: Python :: 3.11",
"Topic :: Adaptive Technologies",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed"
]
[tool.poetry.urls]
"Documentação" = "https://pylinkandtrack.readthedocs.io/en/latest/"
"Código" = "https://github.com/Diaszano/pylinkandtrack"
"Bug Tracker" = "https://github.com/Diaszano/pylinkandtrack/issues"
[tool.poetry.dependencies]
python = "^3.11"
aiohttp = "^3.8.5"
[tool.poetry.group.doc.dependencies]
mkdocs-material = "^9.1.19"
mkdocstrings = "^0.22.0"
mkdocstrings-python = "^1.2.1"
taskipy = "^1.11.0"
mkdocs-macros-plugin = "^1.0.2"
jinja2 = "^3.1.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pytest-asyncio = "^0.21.1"
python-dotenv = "^1.0.0"
taskipy = "^1.11.0"
[tool.poetry.group.lint.dependencies]
blue = "^0.9.1"
isort = "^5.12.0"
taskipy = "^1.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = "."
addopts = "--doctest-modules"
[tool.isort]
profile = "black"
line_length = 79
[tool.taskipy.tasks]
lint = "blue --check --diff . && isort --check --diff ."
lint-fix = "blue . && isort ."
docs = "mkdocs serve"
coverage = "coverage html"
pre_test = "task lint"
test = "pytest -s -x --cov=linkandtrack -vv"
post_test = "task coverage"