-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (44 loc) · 1.17 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
[tool.poetry]
name = "metrify"
version = "0.1.0"
description = "Sistema de coleta automática de métricas com base na API do Github."
authors = ["Pedro Binotto <[email protected]>", "Eric Fernandes Evaristo <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.12"
flask = "^3.0.3"
pymongo = "^4.7.1"
flask-pymongo = "^2.3.0"
python-dotenv = "^1.0.1"
gql = {extras = ["all"], version = "^3.5.0"}
jwt = "^1.3.1"
flask-apscheduler = "^1.13.1"
sphinx = { version = "^7.3.7", optional = true }
sphinxcontrib-httpdomain = { version = "^1.8.1", optional = true }
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.1.0"
mypy = "^1.10.0"
pre-commit = "^3.7.0"
pylint = "^3.1.0"
pytest = "^8.2.0"
pytest-sugar = "^1.0.0"
pytest-cov = "^5.0.0"
tox = "^4.15.0"
[tool.poetry.extras]
docs = ["Sphinx", "sphinxcontrib-httpdomain"]
[tool.pytest.ini_options]
pythonpath = ["."]
addopts = "-v"
testpaths = ["tests"]
[tool.autopep8]
experimental = true
in-place = true
recursive = true
verbose = true
ignore = "E402"
max_line_length = 120
aggressive = 2
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"