-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (72 loc) · 1.83 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
71
72
73
74
75
76
77
78
79
80
81
[tool.poetry]
name = "pyogmios"
version = "0.7.4"
description = "Python client for Ogmios"
authors = ["Hareem Adderley <[email protected]>"]
readme = "README.md"
packages = [{include = "pyogmios_client"}]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta"
]
[project.urls]
"Homepage" = "https://github.com/KINGH242/pyogmios"
"Bug Tracker" = "https://github.com/KINGH242/pyogmios/issues"
[tool.poetry.dependencies]
python = ">=3.8.10, <3.12"
requests = "^2.31.0"
pydantic = "^2.5.1"
aiohttp = "^3.9.0"
aiodns = "^3.1.1"
websocket-client = "^1.6.4"
promise = "^2.3"
nanoid = "^2.0.0"
pyee = "^11.0.1"
rel = "^0.4.9"
[tool.poetry.group.dev.dependencies]
datamodel-code-generator = "^0.24.2"
black = "^22.6.0"
commitizen = "^2.32.5"
coverage = "^6.4.4"
Faker = "^15.3.4"
flake8 = "^5.0.4"
pylint = "^2.14.5"
pytest = "^7.1.3"
pytest-asyncio = "^0.20.3"
pytest-mock = "^3.8.2"
ruff = "^0.0.261"
polyfactory = "^2.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-p no:cacheprovider"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.7.4"
version_files = [
"pyogmios_client/__init__.py:__version__",
"pyproject.toml:version"
]
update_changelog_on_bump = true
style = [
["qmark", "fg:#ff9d00 bold"],
["question", "bold"],
["answer", "fg:#ff9d00 bold"],
["pointer", "fg:#ff9d00 bold"],
["highlighted", "fg:#ff9d00 bold"],
["selected", "fg:#cc5454"],
["separator", "fg:#cc5454"],
["instruction", ""],
["text", ""],
["disabled", "fg:#858585 italic"]
]
[tool.ruff]
ignore = [
"E501",
]
[tool.pylint.'MESSAGES CONTROL']
extension-pkg-whitelist = "pydantic"