-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (57 loc) · 1.47 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
[tool.poetry]
authors = ["Josh Hejka <josh@joshhejka.com>"]
description = "Tools for acquiring and analyzing Pulse API data."
homepage = "https://github.com/hedgertronic/pulse-throw"
license = "MIT"
name = "pulse-throw"
readme = "README.md"
repository = "https://github.com/hedgertronic/pulse-throw"
version = "0.1.0"
[tool.poetry.dependencies]
Authlib = "^1.0.1"
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 = ["pulse_throw.py"]
tests = ["test_pulse_throw.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"]