-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.11 KB
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
[tool.poetry]
name = "chatango-async"
version = "0.0.1"
description = "Async Chatango Client Library."
authors = ["Todd Birchard <toddbirchard@gmail.com>"]
maintainers = ["Todd Birchard <toddbirchard@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/toddbirchard/chatango-async/"
repository = "https://github.com/toddbirchard/chatango-async/"
documentation = "https://github.com/toddbirchard/chatango-async/blob/master/README.md"
keywords = ["Chatango", "Chatbot", "Chat", "Bot", "Python"]
[tool.poetry.dependencies]
python = ">=3.10,<4"
asyncio = "*"
aiohttp = "*"
pytest = "*"
black = "*"
isort = "*"
flake8 = "*"
pylint = "*"
loguru = "*"
python-dotenv = "*"
pydantic = "*"
pydantic-settings = "*"
coverage = "^7.3.2"
[tool.poetry.scripts]
run = "example"
[tool.poetry.urls]
issues = "https://github.com/toddbirchard/chatango-async/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
src_paths = ["chatango", "example", "config", "logger"]
[tool.black]
line-length = 120
[tool.pylint.'MESSAGES CONTROL']
disable = "C0103,C0301,W0703,W0621"