forked from xFGhoul/PythonProtector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
78 lines (73 loc) · 2.23 KB
/
Copy pathsetup.py
File metadata and controls
78 lines (73 loc) · 2.23 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
77
78
"""
____ ____ __ __
/ __ \\ __ __ / __ \\ _____ ____ / /_ ___ _____ / /_
/ /_/ // / / // /_/ // ___// __ \\ / __// _ \\ / ___// __/
/ ____// /_/ // ____// / / /_/ // /_ / __// /__ / /_
/_/ \\__, //_/ /_/ \\____/ \\__/ \\___/ \\___/ \\__/
/____/
Made With ❤️ By Ghoul & Marci
"""
from setuptools import setup
with open("README.md", encoding="utf8") as readme_file:
README = readme_file.read()
with open("HISTORY.md") as history_file:
HISTORY = history_file.read()
setup(
name="PythonProtector",
packages=[
"pyprotector",
"pyprotector.utils",
"pyprotector.modules",
"pyprotector.keyauth",
],
version="1.8",
license="MIT",
description="Library for protecting your python files",
author="Ghoul & Marci",
url="https://github.com/xFGhoul/PythonProtecttor",
long_description_content_type="text/markdown",
long_description=README + "\n\n" + HISTORY,
python_requires=">=3.11",
project_urls={
"Homepage": "http://ghouldev.me/PythonProtector/",
"Source": "https://github.com/xFGhoul/PythonProtector",
},
keywords=[
"keyauth",
"protection",
"protect",
"obfuscate",
"obfuscation",
"WMI",
"windows",
],
install_requires=[
"humanize",
"loguru",
"discord-webhook",
"py-cpuinfo",
"command_runner",
"psutil",
"httpx",
"WMI",
"pywin32",
"Pillow",
"observable",
"cryptography",
],
extras_require={"Keyauth": ["pycryptodome"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Natural Language :: English",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
],
)