-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (64 loc) · 1.85 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[tool.poetry]
name = "omnitils"
version = "1.4.6"
description = "Universal reusable Python utils for the modern human."
authors = ["Investigamer <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
keywords = ["omnitils", "utilities", "utils", "files", "schema", "test", "benchmark", "enums", "logs", "investigamer"]
classifiers = [
# Development status
"Development Status :: 4 - Beta",
# License
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
# Audience and Purpose
"Intended Audience :: Developers",
"Topic :: Utilities",
# Supported Python versions
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
packages = [
{include = "omnitils"},
{include = "omnitils/py.typed"}
]
[tool.poetry.urls]
"Changelog" = "https://github.com/Investigamer/omnitils/blob/main/CHANGELOG.md"
"Discord" = "https://discord.gg/magicproxies"
"Issues" = "https://github.com/Investigamer/omnitils/issues"
"Source" = "https://github.com/Investigamer/omnitils"
"Sponsor" = "https://patreon.com/mpcfill"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
requests = "^2.32.3"
PyYAML = "^6.0.1"
yarl = "^1.9.4"
tomlkit = "^0.13.2"
pillow = "^10.4.0"
ratelimit = "^2.2.1"
backoff = "^2.2.1"
pathvalidate = "^3.2.0"
py7zr = "^0.22.0"
tqdm = "^4.66.1"
tomli = "^2.0.1"
pydantic = "^2.9.2"
loguru = "^0.7.2"
click = "^8.1.7"
python-dateutil = "^2.9.0.post0"
[tool.poetry.group.dev.dependencies]
commitizen = "^3.25.0"
mypy = "^1.8.0"
pytest = "^8.0.0"
[tool.commitizen]
version = "1.4.6"
encoding = "utf-8"
tag_format = "$major.$minor.$patch"
update_changelog_on_bump = true
version_files = [
"pyproject.toml:version",
"omnitils/__init__.py:__version__"
]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"