Metadata-Version: 2.3
Name: reflex-enterprise
Version: 0.0.1a1
Summary: Package containing the paid features for Reflex. [Pro/Team/Enterprise]
License: Proprietary
Keywords: reflex,python,reflex-enterprise
Author: Nikhil Rao
Author-email: nikhil@reflex.dev
Requires-Python: >=3.10
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: asgiproxy (>=0.2.0)
Requires-Dist: reflex (>=0.7.0)
Project-URL: Documentation, https://reflex.dev/docs/
Project-URL: Homepage, https://reflex.dev/
Description-Content-Type: text/markdown

# How to install reflex_enterprise.   

In following instructions, replace `x` with the correct version of reflex-enterprise you are using.
- Copy `reflex-enterprise-0.0.x.zip` to the root of your project.
    ```bash
    cp reflex-enterprise-0.0.x.zip /path/to/your/project
    ```
    
- Extract the zip file.
    ```bash
    unzip reflex-enterprise-0.0.x.zip
    ```

- Install the folder as a package using pip.
    ```bash
    pip install -e reflex-enterprise-0.0.x
    ```

- Install the requirements for reflex_enterprise.
    ```
    pip install -r reflex-enterprise-0.0.x/requirements.txt
    ```


# How to use reflex enterprise.   
In the main file, instead of using `rx.App()` to create your app, use the following:

```python
import reflex_enterprise as rxe

...

rxe.App()

...
```
