Release 0.0.1
This commit is contained in:
@@ -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
|
||||
@@ -1,5 +1,7 @@
|
||||
# Quart-Session
|
||||
|
||||
 [](https://pypi.org/project/Quart-Session/) 
|
||||
|
||||
Quart-Session is an extension for Quart that adds support for
|
||||
server-side sessions to your application.
|
||||
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user