-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.02 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cheatbot"
version = "0.1.1"
authors = [
{ name="Simon Sudarushkin", email="simonsudarushkin@gmail.com" },
]
description = "Асинхронная Python-библиотека для взаимодействия с API сервиса CheatBot."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"httpx>=0.20.0",
"pydantic>=2.0",
]
[project.urls]
"Homepage" = "https://github.com/simonether/cheatbot"
"Repository" = "https://github.com/simonether/cheatbot"
[project.optional-dependencies]
dev = [
"build",
"twine",
"mypy",
"ruff",
"pytest",
"pytest-asyncio",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"