This repository was archived by the owner on Jan 16, 2026. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.41 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
[tool.poetry]
name = "pypers"
version = "1.3.4"
description = "A utilities module made for personal use, has small snippets which I use in many projects."
authors = ["Divkix <divkix@divkix.me>"]
license = "MIT"
readme = "README.md"
homepage = "https://pypers.divkix.me"
repository = "https://github.com/Divkix/pypers"
keywords = ["pypers", "divkix helpers", "python helpers", "py helpers"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
include = [
"LICENSE",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Divkix/pypers/issues"
"Community" = "https://t.me/DivideProjects"
[tool.poetry.dependencies]
python = "^3.7"
motor = "^3.0.0"
dnspython = "^2.2.1"
httpx = ">=0.22,<0.25"
Pillow = "^9.2.0"
aiohttp = "^3.8.1"
hachoir = "^3.1.3"
[tool.poetry.dev-dependencies]
black = "^23.1.0"
isort = "^5.10.1"
pyclean = "^2.2.0"
pre-commit = "^2.19.0"
pylint = "^2.13.9"
mkdocs = "^1.3.0"
mkdocs-material = "^9.0.12"
mkdocs-git-revision-date-plugin = "^0.3.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"