diff --git a/.github/workflows/pythonpublish.yml b/.github/workflows/pythonpublish.yml index 019ea83..ecc3995 100644 --- a/.github/workflows/pythonpublish.yml +++ b/.github/workflows/pythonpublish.yml @@ -42,7 +42,7 @@ jobs: prerelease: false - name: Trigger deploy run: | - curl -X POST https://api.github.com/repos/cloudmitigator/reflex-docs-infrastructure/dispatches \ + curl -X POST https://api.github.com/repos/reflexivesecurity/reflex-docs-infrastructure/dispatches \ -H "Accept: application/vnd.github.everest-preview+json" \ -H "Authorization: token $GITHUB_TOKEN" \ --data '{"event_type": "deploy"}' diff --git a/README.md b/README.md index 2e233fe..4dea43f 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ Package for the core Reflex classes. You can use these classes to easily create Reflex rules to secure your cloud environment (currently only supports AWS). You'll also want to familiarize yourself with the other parts of Reflex: -- [reflex-cli](https://www.github.com/cloudmitigator/reflex-cli), a CLI for creating and managing your Reflex rules and environment. -- [reflex-engine](https://www.github.com/cloudmitigator/reflex-engine), Terraform modules for deploying required Reflex rule infrastructure. -- [reflex documentation](https://docs.cloudmitigator.com/), general documentation about deploying reflex. +- [reflex-cli](https://www.github.com/reflexivesecurity/reflex-cli), a CLI for creating and managing your Reflex rules and environment. +- [reflex-engine](https://www.github.com/reflexivesecurity/reflex-engine), Terraform modules for deploying required Reflex rule infrastructure. +- [reflex documentation](https://docs.reflexivesecurity.com/), general documentation about deploying reflex. ## Installation You can install `reflex-core` using `pip`. @@ -27,7 +27,7 @@ class MyRule(AWSRule): # etc ``` -For examples, browse provided rules on [CloudMitigator's GitHub](https://www.github.com/cloudmitigator/). +For examples, browse provided rules on [Reflexive Security's GitHub](https://www.github.com/reflexivesecurity/). ## License -Reflex is made available under the MPL 2.0 license. For more information view the [LICENSE](https://github.com/cloudmitigator/reflex-core/blob/master/LICENSE) +Reflex is made available under the MPL 2.0 license. For more information view the [LICENSE](https://github.com/reflexivesecurity/reflex-core/blob/master/LICENSE) diff --git a/docs/conf.py b/docs/conf.py index 3ded0c4..eac696f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,8 +19,8 @@ # -- Project information ----------------------------------------------------- project = "reflex-core" -copyright = "2020, CloudMitigator" -author = "CloudMitigator" +copyright = "2020, Reflexive Security" +author = "Reflexive Security" # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index d4bd7e4..b02aef4 100644 --- a/setup.py +++ b/setup.py @@ -7,8 +7,8 @@ setuptools.setup( name="reflex-core", version=f"{os.environ['VERSION']}", - author="Cloud Mitigator", - author_email="cloudmitigator@gmail.com", + author="Reflexive Security", + author_email="info@reflexivesecurity.com", description="Package for providing core Reflex rule classes", long_description=long_description, long_description_content_type="text/markdown",