-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (44 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
48 lines (44 loc) · 1.32 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jobfuscator"
version = "1.0.4"
description = "JObfuscator is a source code obfuscator for the Java programming language. Obfuscate and protect your Java source code and algorithms from hacking, cracking, reverse engineering, decompilation, and technology theft. JObfuscator provides advanced Java source code parsing based on AST trees, multiple advanced obfuscation strategies are available."
readme = "README.md"
requires-python = ">=3"
license = { text = "Apache-2.0" }
authors = [
{ name = "Bartosz Wójcik", email = "support@pelock.com" },
]
keywords = [
"java",
"jar",
"war",
"class",
"source",
"obfuscator",
"obfuscation",
"obfuscate",
"decompile",
"decompiler",
"decompilation",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Security",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Java",
]
dependencies = [
"requests",
]
[project.urls]
Homepage = "https://www.pelock.com"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]