-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (48 loc) · 1.34 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
[project]
name = "msecbot"
version = "0.1.0"
description = "Twitch chat bot that allows RCE on broadcasters machine."
keywords = [ "twitch", "chat", "bot", "msec", "rce" ]
authors = [{name = "MSec", email = "[email protected]"}]
maintainers = [{name = "MSec", email = "[email protected]"}]
readme = "README.md"
requires-python = "^3.12"
dependencies = [
"python-decouple (>=3.8)",
"colorama (>=0.4.6)",
"nest-asyncio (>=1.6.0)",
"boto3 (>=1.35.86)",
"twitchio (>=2.10.0)",
"vt-py (>=0.19.0)",
"pytest-responses (>=0.5.1)",
]
[project.urls]
homepage = "https://github.com/minimike86/TwitchRCE"
repository = "https://github.com/minimike86/TwitchRCE"
documentation = "https://github.com/minimike86/TwitchRCE/blob/main/README.md"
bug-tracker = "https://github.com/minimike86/TwitchRCE/issues"
[project.scripts]
msecbot = "bot.msecbot.main:run_main"
[tool.poetry]
packages = [
{ include = "bot", from = "." },
]
[tool.poetry.group.dev.dependencies]
setuptools = "^75.2.0"
pytest = "^8.3.3"
pytest-mock = "^3.14.0"
pytest-asyncio = "^0.24.0"
coverage = "^7.6.4"
black = "^25.1.0"
isort = "^5.13.2"
six = "^1.16.0"
moto = "^5.0.18"
[tool.isort]
profile = "black"
src_paths = ["aws", "bot"]
py_version = "312"
[tool.black]
target-version = ["py312"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"