Skip to content

Commit 19f815b

Browse files
committed
🔨 published to PyPi
1 parent 4517d65 commit 19f815b

File tree

5 files changed

+195
-90
lines changed

5 files changed

+195
-90
lines changed

.gitignore

+15-90
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
1-
# Created by https://www.toptal.com/developers/gitignore/api/python,flask,venv
2-
# Edit at https://www.toptal.com/developers/gitignore?templates=python,flask,venv
1+
# Created by https://www.toptal.com/developers/gitignore/api/python,venv,virtualenv
2+
# Edit at https://www.toptal.com/developers/gitignore?templates=python,venv,virtualenv
33

4-
### Flask ###
5-
instance/*
6-
!instance/.gitignore
7-
.webassets-cache
8-
.env
9-
10-
### Flask.Python Stack ###
4+
### Python ###
115
# Byte-compiled / optimized / DLL files
126
__pycache__/
137
*.py[cod]
@@ -73,6 +67,7 @@ db.sqlite3-journal
7367

7468
# Flask stuff:
7569
instance/
70+
.webassets-cache
7671

7772
# Scrapy stuff:
7873
.scrapy
@@ -129,6 +124,7 @@ celerybeat.pid
129124
*.sage.py
130125

131126
# Environments
127+
.env
132128
.venv
133129
env/
134130
venv/
@@ -167,87 +163,12 @@ cython_debug/
167163
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
168164
#.idea/
169165

170-
### Python ###
171-
# Byte-compiled / optimized / DLL files
172-
173-
# C extensions
174-
175-
# Distribution / packaging
166+
### Python Patch ###
167+
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
168+
poetry.toml
176169

177-
# PyInstaller
178-
# Usually these files are written by a python script from a template
179-
# before PyInstaller builds the exe, so as to inject date/other infos into it.
180-
181-
# Installer logs
182-
183-
# Unit test / coverage reports
184-
185-
# Translations
186-
187-
# Django stuff:
188-
189-
# Flask stuff:
190-
191-
# Scrapy stuff:
192-
193-
# Sphinx documentation
194-
195-
# PyBuilder
196-
197-
# Jupyter Notebook
198-
199-
# IPython
200-
201-
# pyenv
202-
# For a library or package, you might want to ignore these files since the code is
203-
# intended to run in multiple environments; otherwise, check them in:
204-
# .python-version
205-
206-
# pipenv
207-
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
208-
# However, in case of collaboration, if having platform-specific dependencies or dependencies
209-
# having no cross-platform support, pipenv may install dependencies that don't work, or not
210-
# install all needed dependencies.
211-
212-
# poetry
213-
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
214-
# This is especially recommended for binary packages to ensure reproducibility, and is more
215-
# commonly ignored for libraries.
216-
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
217-
218-
# pdm
219-
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
220-
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
221-
# in version control.
222-
# https://pdm.fming.dev/#use-with-ide
223-
224-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
225-
226-
# Celery stuff
227-
228-
# SageMath parsed files
229-
230-
# Environments
231-
232-
# Spyder project settings
233-
234-
# Rope project settings
235-
236-
# mkdocs documentation
237-
238-
# mypy
239-
240-
# Pyre type checker
241-
242-
# pytype static type analyzer
243-
244-
# Cython debug symbols
245-
246-
# PyCharm
247-
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
248-
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
249-
# and can be added to the global gitignore or merged into this file. For a more nuclear
250-
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
170+
# ruff
171+
.ruff_cache/
251172

252173
### venv ###
253174
# Virtualenv
@@ -261,4 +182,8 @@ cython_debug/
261182
pyvenv.cfg
262183
pip-selfcheck.json
263184

264-
# End of https://www.toptal.com/developers/gitignore/api/python,flask,venv
185+
### VirtualEnv ###
186+
# Virtualenv
187+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
188+
189+
# End of https://www.toptal.com/developers/gitignore/api/python,venv,virtualenv

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
## Flask Server Sent Events
File renamed without changes.

poetry.lock

+163
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tool.poetry]
2+
name = "flask_queue_sse"
3+
version = "0.1.0"
4+
description = "A simple implementation of Server-Sent Events for Flask that doesn't require Redis pub/sub."
5+
authors = ["Vasanth Developer <[email protected]>"]
6+
readme = "README.md"
7+
packages = [{ include = "flask_queue_sse" }]
8+
9+
[tool.poetry.dependencies]
10+
python = "^3.11"
11+
flask = "^2.2.2"
12+
13+
14+
[build-system]
15+
requires = ["poetry-core"]
16+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)