Metadata-Version: 2.1
Name: season
Version: 0.1.6
Summary: web framework based on flask
Home-page: https://github.com/season-framework/season-flask
Author: proin
Author-email: proin@season.co.kr
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: flask
Requires-Dist: watchdog

## Installation

```bash
pip install git+https://github.com/season-framework/season-flask
# or
pip install season
```

## Usage

- create project

```bash
cd <workspace>
sf create your-project-name
```

- create your websrc

```bash
cd <your-project-path>
sf add module dashboard
sf add module theme --uri https://git.season.co.kr/season-flask/module-theme-tabler # theme for tabler ui
sf add filter testfilter
sf add model testset
```

- start

```bash
cd <your-project-path>
sf run
```

