-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
114 lines (107 loc) · 3.38 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = [
"aplustools",
"aplustools.data",
"aplustools.io",
# "aplustools.utils",
"aplustools.web",
"aplustools.package",
# "aplustools.tests",
"aplustools.security",
# "aplustools.security.protocols",
# "aplustools.security.dicts",
# "aplustools.security.crypto",
# "aplustools.security.crypto._crypto",
# "aplustools.security.crypto._pycrypto"
]
include-package-data = true
package-dir = {"" = "src"}
#[tool.setuptools.package-data]
#"aplustools.security.dicts" = [
# "def-dict.txt",
# "google-10000-dict.txt",
# "scowl-50-dict.txt",
# "scowl-60-dict.txt",
# "scowl-70-dict.txt",
# "scowl-80-dict.txt",
# "scowl-95-dict.txt",
# "12-dicts/2of4brif.txt",
# "12-dicts/2of5core.txt",
# "12-dicts/2of12.txt",
# "12-dicts/2of12inf.txt",
# "12-dicts/3esl.txt",
# "12-dicts/3of6all.txt",
# "12-dicts/3of6game.txt",
# "12-dicts/5d+2a.txt",
# "12-dicts/6of12.txt",
# "12-dicts/6phrase.txt"
#]
[project]
name = "aplustools"
version = "2.0.0.0a6"
dependencies = ["packaging", "pywin32>=306; os_name == 'nt'", "cachetools>=5.5.0"]
requires-python = ">= 3.10"
authors = [
{name = "Cariel Becker", email = "cariel.becker@gmx.de"},
]
maintainers = [
{name = "Cariel Becker", email = "cariel.becker@gmx.de"},
]
description = "A collection of helpful tools"
readme = {file = "README.md", content-type = "text/markdown"}
license = {text = "LGPL-2.1-or-later"}
keywords = ["general", "tools", "app tools", "production", "apt"]
classifiers = [
"License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Natural Language :: English"
]
[project.optional-dependencies]
data = ["Pillow>=10.3.0", "opencv-python>=4.9.0.80", "pillow_heif==0.15.0",
"numpy==1.26.4", "brotli>=1.1.0", "zstandard>=0.22.0",
"py7zr>=0.21.0", "requests>=2.32.0", "BeautifulSoup4>=4.12.2", "cachetools>=5.5.0"]
io = ["windows-toasts>=1.1.1; os_name == 'nt'", "psutil>=6.0.0", "pywin32>=306", "PySide6>=6.7.0"]
package = [ "numpy>=1.26.4", "scipy>=1.13.0", "scikit-learn>=1.5.2"]
security = ["cryptography>=42.0.5", "quantcrypt>=0.4.2; python_version == '3.12'", "zxcvbn>=4.4.28", "bcrypt>=4.1.2"]
web = ["requests>=2.32.0", "BeautifulSoup4>=4.12.2", "aiohttp>=3.9.5"]
dev = ["pytest"]
all = [
"Pillow>=10.4.0",
"aiohttp>=3.9.4",
"opencv-python>=4.9.0.80",
"pillow_heif>=0.15.0",
"numpy>=1.26.4",
"brotli>=1.1.0",
"zstandard>=0.22.0",
"py7zr>=0.21.0",
"requests>=2.32.0",
"BeautifulSoup4>=4.12.2",
"windows-toasts>=1.1.1; os_name == 'nt'",
"scipy>=1.13.0",
"scikit-learn>=1.4.1.post1; os_name == 'nt'",
"scikit-learn; os_name != 'nt'",
"cryptography>=42.0.5",
"quantcrypt>=0.4.2; python_version == '3.12'",
"pytest",
"zxcvbn>=4.4.28",
"bcrypt>=4.1.2",
"psutil>=6.0.0",
"pywin32>=306",
"cachetools>=5.5.0",
"PySide6>=6.7.0"
]
[project.urls]
Home = "https://pypi.org/project/aplustools/"
Repository = "https://github.com/adalfarus/aplustools"
Documentation = "https://github.com/adalfarus/aplustools/wiki"
"Issue tracker" = "https://github.com/adalfarus/aplustools/issues"
#[tool.pytest.ini_options]
## This is equivalent to setup_requires and tests_require
## Add your pytest configuration here
#addopts = "your pytest options"
[project.scripts]
aps = "aplustools._cli:_cli"