-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
62 lines (58 loc) · 1.67 KB
/
setup.py
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
"""
___ ___ ___ __
/ _ \__ __/ _ \___ / _/__ ___ ___/ /__ ____
/ ___/ // / // / -_) _/ -_) _ \/ _ / -_) __/
/_/ \_, /____/\__/_/ \__/_//_/\_,_/\__/_/
/___/
Made with 💞 by kova / api
- Made with program protection in mind.
"""
from setuptools import setup
with open("README.md", encoding="utf-8") as read:
README = read.read()
setup(
name="pythondefender",
version="1.0.4",
description="A simple, easy-to-use Python file protector.",
packages=[
"pydefender",
"pydefender.utils",
"pydefender.modules"
],
license="MIT",
author="Faint / Kova",
url="https://github.com/faintastic/PyDefender",
author_email="faintastic@pm.me",
long_description_content_type="text/markdown",
long_description=README,
keywords=[
"protect", "protection",
"defend", "defender",
"obfuscate", "obfuscation",
"pydefend", "pydefender"
],
install_requires=[
"humanize",
"loguru",
"discord-webhook",
"py-cpuinfo",
"command_runner",
"psutil",
"httpx",
"WMI",
"pywin32",
"Pillow",
"observable",
"cryptography",
"pythondefender"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Natural Language :: English",
"Topic :: Education",
"Topic :: Internet"
]
)