forked from thomwiggers/onebot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
88 lines (78 loc) · 1.75 KB
/
pyproject.toml
File metadata and controls
88 lines (78 loc) · 1.75 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
84
85
86
87
88
[project]
name = "onebot"
version = "2.0.1"
description = "OneBot is an irc bot based on irc3"
authors = [{name = "Thom Wiggers", email = "thom@thomwiggers.nl"}]
readme = "README.rst"
license = {text = "BSD-3-Clause"}
requires-python = ">=3.11"
keywords = ["onebot", "irc"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Communications :: Chat :: Internet Relay Chat",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"irc3>=1.1",
"lfmh>=1.1.1",
"musicbrainzngs>=0.7.1",
"beautifulsoup4>=4",
"requests>=2",
"isodate>=0.7",
"cryptography>=46",
"tekore>=6",
"dateparser>=1",
"redis>=7",
"praw>=7.8.1",
"aiohttp>=3.13.3",
"yfinance>=0.2"
]
[project.urls]
Repository = "https://github.com/thomwiggers/onebot"
[project.scripts]
onebot = "onebot:run"
[dependency-groups]
dev = [
"freezegun>=1.5.5",
"pytest",
"ruff",
"betamax",
"coverage",
"pytest-cov",
"tox",
"tox-uv",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["onebot"]
[tool.tox]
legacy_tox_ini = """
[tox]
requires =
tox-uv
envlist = py311,py312,py313,py314,package
[testenv]
package = editable
dependency_groups =
dev
commands =
pytest
[testenv:package]
skip_install = True
commands =
uv build
"""
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--doctest-modules --ignore=docs/"
[tool.ruff]
line-length = 88
target-version = "py314"