Release 0.0.1

This commit is contained in:
Sander
2020-01-05 17:00:46 +01:00
committed by sander
parent f05c49105e
commit ad2a1db6c5
4 changed files with 16 additions and 1 deletions
View File
+9
View File
@@ -0,0 +1,9 @@
include LICENSE
include CHANGELOG.md
include README.md
include setup.cfg
recursive-include quart_session *.py
recursive-include quart_session *.md
exclude .gitlab-ci.yml
exclude examples
exclude docs
+2
View File
@@ -1,5 +1,7 @@
# Quart-Session
![pyversions](https://img.shields.io/pypi/pyversions/Quart-Session.svg) [![pypiversion](https://badge.fury.io/py/Quart-Session.svg)](https://pypi.org/project/Quart-Session/) ![PyPI license](https://img.shields.io/pypi/l/Quart-Session.svg)
Quart-Session is an extension for Quart that adds support for
server-side sessions to your application.
+5 -1
View File
@@ -14,6 +14,9 @@ Links
"""
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
INSTALL_REQUIRES = [
"Quart>=0.10.0"
@@ -27,7 +30,8 @@ setup(
author='Sander',
author_email='sander@sanderf.nl',
description='Adds server-side session support to your Quart application',
long_description=__doc__,
long_description=long_description,
long_description_content_type='text/markdown',
packages=['quart_session'],
zip_safe=False,
include_package_data=True,