-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.62 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.62 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
[build-system]
requires = ["setuptools>=77.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stringencrypt"
version = "1.0.1"
description = "StringEncrypt page allows you to encrypt strings and files using randomly generated algorithm, generating a unique decryption code (so called polymorphic code) each time in the selected programming language."
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.8"
authors = [
{ name = "Bartosz Wójcik", email = "support@pelock.com" },
]
keywords = [
"encryption",
"string",
"file",
"string-encryption",
"file-encryption",
"security",
"cryptography",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"requests>=2.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"responses>=0.25.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[project.urls]
Homepage = "https://www.stringencrypt.com"
Source = "https://github.com/PELock/StringEncrypt-Python"
"Bug Tracker" = "https://github.com/PELock/StringEncrypt-Python/issues"
[tool.setuptools]
zip-safe = false
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
where = ["."]
include = ["stringencrypt*"]