Metadata-Version: 2.4
Name: Weban
Version: 0.1.0
Summary: A Web Application Framework For Python.
Author-email: Cosmic Union <cosmicunion2@gmail.com>
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3

This is a framework that can make web applications in python, for example:
```
import Weban

app = Weban.Weban()

@app.route('/')
def home():
    return 'Welcome to Weban!'

@app.route('/about')
def about():
    return 'This is a simple web framework called Weban.'

if __name__ == '__main__':
    app.run()
```
Installation
```
pip install Weban
```

