-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
63 lines (54 loc) · 1.33 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
[tool.poetry]
authors = ["Josh Hejka <[email protected]>"]
description = "Tools for acquiring and analyzing Oura API data."
license = "MIT"
name = "oura-ring"
readme = "README.md"
version = "0.3.0"
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.28.1"
[tool.poetry.group.dev.dependencies]
black = "^22.6.0"
coverage = { version = "^6.4.4", extras = ["toml"] }
flake8 = "^4.0.1"
flake8-bandit = "^3.0.0"
flake8-bugbear = "^22.7.1"
flake8-builtins = "^1.5.3"
flake8-cognitive-complexity = "^0.1.0"
flake8-comprehensions = "^3.10.0"
flake8-docstrings = "^1.6.0"
flake8-eradicate = "^1.3.0"
isort = "^5.10.1"
mypy = "^0.971"
pep8-naming = "^0.13.2"
pre-commit = "^2.20.0"
pylint = "^2.14.5"
pytest = "^7.1.2"
pytest-recording = "^0.12.1"
python-dotenv = "^0.20.0"
pyupgrade = "^2.37.3"
tryceratops = "^1.1.0"
types-requests = "^2.28.4"
[tool.coverage.paths]
source = ["oura_ring.py"]
tests = ["test_oura_ring.py"]
[tool.coverage.report]
fail_under = 100
show_missing = true
[tool.coverage.run]
omit = ["test*"]
[tool.isort]
lines_after_imports = 2
profile = "black"
[tool.mypy]
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
warn_unreachable = true
[tool.pylint.messages_control]
ignore-patterns = "test.*?py"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]