-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (71 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
76 lines (71 loc) · 1.69 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
[build-system]
requires = ["setuptools>=80.9", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "libdev"
dynamic = ["version"]
description = "Set of standard functions for development"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10, <4"
license = { file = "LICENSE" }
authors = [{ name = "Alex Poloz", email = "alexypoloz@gmail.com" }]
keywords = [
"standard",
"lib",
"dev",
"development",
"cfg",
"config",
"generate",
"codes",
"tokens",
"ids",
"passwords",
"generator",
"ciphers",
"time",
"formatter",
"nlp",
"natural language",
"aws",
"s3",
"upload file",
"file server",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3.13.2",
"python-dotenv>=1.2.1",
"boto3>=1.42.0",
"Pillow>=12.0.0",
"pillow-heif>=1.0.0",
"loguru>=0.7.3",
]
[project.optional-dependencies]
dev = [
"build>=1.3.0",
"setuptools>=80.9.0",
"twine>=6.2.0",
"pylint>=4.0.4",
"pytest>=9.0.1",
"pytest-asyncio>=1.3.0",
]
[project.urls]
Source = "https://github.com/chilleco/lib"
[tool.setuptools.dynamic]
version = { attr = "libdev.__version__" }
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]