-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 2.34 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 2.34 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
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
82
83
[project]
name = "betterKickAPI"
version = "1.0.1"
description = "A Python 3.9+ implementation of the Kick API and Webhook. Highly inspired on twitchAPI"
readme = "README.md"
authors = [
{ name = "Benjas333", email = "seston30@gmail.com" }
]
requires-python = ">=3.9"
license = "MIT"
dependencies = [
"aiofiles>=25.1.0",
"aiohttp>=3.13.2",
"cryptography>=46.0.3",
"enum-tools>=0.13.0",
"orjson>=3.11.4",
"pydantic>=2.12.3",
"socketify>=0.0.31",
"strenum>=0.4.15",
]
keywords = ['kick', 'kick.com', 'chat', 'webhook', 'event sub', 'EventSub', 'api', 'kickapi']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Communications",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Repository = "https://github.com/Benjas333/pyKickAPI"
Issues = "https://github.com/Benjas333/pyKickAPI/issues"
Changelog = "https://github.com/Benjas333/pyKickAPI/blob/master/CHANGELOG.md"
[build-system]
# requires = ["uv_build>=0.8.11,<0.9.0"]
# build-backend = "uv_build"
# requires = ["setuptools>=61"]
# build-backend = "setuptools.build_meta"
requires = ["hatchling"]
build-backend = "hatchling.build"
# [tool.uv.build-backend]
# module-root = "src"
# module-name = "betterKickAPI"
# [tool.setuptools.packages.find]
# where = ['src']
# [tool.setuptools.package-data]
# betterKickAPI = ['py.typed']
[tool.hatch.build.targets.sdist]
include = [
"src/betterKickAPI",
]
[tool.pytest.ini_options]
addopts = "-v --cov=betterKickAPI --cov-report=term-missing --html=src/tests/reports/report.html --self-contained-html"
# log_cli = true
# log_cli_level = "DEBUG"
log_level = "DEBUG"
testpaths = ["src/tests"]
[dependency-groups]
dev = [
"pydata-sphinx-theme>=0.16.1",
"pylint>=3.3.8",
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"pytest-html>=4.1.1",
"python-dotenv>=1.1.1",
"sphinx>=7.4.7",
"sphinxcontrib-napoleon>=0.7",
]