diff --git a/README.md b/README.md index d4116e3..c289a62 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# Defendron +# Defendatron -Defendron is a simple coordinator for `Protectbots`, Python modules that provide security features for your applications. +Defendatron is a simple coordinator for `Protectbots`, Python modules that provide security features for your applications. --- @@ -12,39 +12,39 @@ Defendron is a simple coordinator for `Protectbots`, Python modules that provide ## Installation ```bash -pip install defendron +pip install defendatron ``` ## Usage ```python -import defendron +import defendatron -# Activate defendron (all protectbots) -defendron.activate() +# Activate defendatron (all protectbots) +defendatron.activate() -# Deactivate defendron (all protectbots) -defendron.deactivate() +# Deactivate defendatron (all protectbots) +defendatron.deactivate() # Activate specific protectbots -defendron.nullscream.activate() -defendron.shadowlogger.activate() -defendron.lockdown.activate() +defendatron.nullscream.activate() +defendatron.shadowlogger.activate() +defendatron.lockdown.activate() # Deactivate specific protectbots -defendron.nullscream.deactivate() -defendron.shadowlogger.deactivate() -defendron.lockdown.deactivate() +defendatron.nullscream.deactivate() +defendatron.shadowlogger.deactivate() +defendatron.lockdown.deactivate() ``` -See `src/defendron/__init__.py` for more advanced usage. +See `src/defendatron/__init__.py` for more advanced usage. -## When Protecbots assemble, they create DEFENDRON +## When Protecbots assemble, they create DEFENDATRON ![img_2.png](img_1.png) --- -Defendron is built with `Protectbots`, Python modules that provide security features for your applications. +Defendatron is built with `Protectbots`, Python modules that provide security features for your applications. Each `Protectbot` is designed to defend against specific threats and vulnerabilities, helping to provide another layer of protection for your code. diff --git a/setup.py b/setup.py index 63ba6aa..46d66be 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages setup( - name="defendron", + name="defendatron", version="0.1.0", author="Capsize LLC", description="", @@ -10,7 +10,7 @@ keywords="", license="GPL-3.0", author_email="contact@capsizegames.com", - url="https://github.com/Capsize-Games/defendron", + url="https://github.com/Capsize-Games/defendatron", package_dir={"": "src"}, packages=find_packages("src"), python_requires=">=3.10.0", diff --git a/src/defendron/__init__.py b/src/defendatron/__init__.py similarity index 97% rename from src/defendron/__init__.py rename to src/defendatron/__init__.py index 931a16e..11ab9b3 100644 --- a/src/defendron/__init__.py +++ b/src/defendatron/__init__.py @@ -18,7 +18,7 @@ def activate( activate_lockdown: bool = False, activate_nullscream: bool = False, ): - print("Activating defendron") + print("Activating defendatron") if activate_shadowlogger: print("Activating shadow logger") shadowlogger.manager.activate()