Skip to content

Commit

Permalink
add Python 'Trove' classifiers to the project (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
seapagan authored Mar 21, 2024
1 parent 66c3fd2 commit 2bac897
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ These below are from Issues or PRs in the original repository.
- add an option to the init function to disable logging of cache hits and
misses. or only display these messages if a certain ENV variable is set/unset?
- add an option to have a separate logging file for cache hits and misses?
- remove creating a test Redis from `redis.py`. This should not be done in the
production logic, but set up in the test logic.
- add a `cache_key` parameter to the `cache` decorator to allow for custom
cache keys
14 changes: 14 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,20 @@ license = "MIT"
readme = "README.md"
packages = [{ include = "fastapi_redis_cache", from = "." }]

classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]

[tool.poetry.dependencies]
python = "^3.9"
pydantic = "^2.6.4"
Expand Down

0 comments on commit 2bac897

Please sign in to comment.