-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the development status, and added 3.12 to the supported python versions as well. Also, removed the poetry.lock from the repo, with a similar reasoning to redis-python repo. Also, run isort and black on the code.
- Loading branch information
Showing
6 changed files
with
8 additions
and
756 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,3 +162,5 @@ cython_debug/ | |
.DS_Store | ||
|
||
.vscode | ||
|
||
poetry.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,3 @@ def do_GET(self): | |
else: | ||
self.send_response(200) | ||
self.wfile.write("Hello!".encode("utf-8")) | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[tool.poetry] | ||
name = "upstash-ratelimit" | ||
version = "0.5.1" | ||
version = "1.0.0" | ||
description = "Serverless ratelimiting package from Upstash" | ||
authors = ["Upstash <[email protected]>", "Zgîmbău Tudor <[email protected]>"] | ||
maintainers = ["Upstash <[email protected]>"] | ||
readme = "README.md" | ||
repository = "https://github.com/upstash/ratelimit-python" | ||
keywords = ["ratelimit", "rate limit", "Upstash rate limit", "Redis rate limit"] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
|
@@ -19,14 +19,15 @@ classifiers = [ | |
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Topic :: Software Development :: Libraries", | ||
] | ||
packages = [{include = "upstash_ratelimit"}] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
upstash-redis = "^0.15.0" | ||
upstash-redis = "^1.0.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters