Skip to content

Commit

Permalink
Update pyproject.toml with additional metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
furechan committed Jan 8, 2024
1 parent 49919cb commit 0d4ec5c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
[build-system]
requires = [ "hatchling",]
requires = [ "hatchling"]
build-backend = "hatchling.build"

[project]
name = "tempcache"
version = "0.0.7"
readme = "README.md"
license = { text = "MIT License" }
requires-python = ">=3.8"
description = "Python library to cache data and function results in temporary files"
keywords = ["caching", "tempfiles"]
authors = [ {"name" = "furechan", "email" = "furechan@xsmail.com"} ]
urls = { "homepage" = "https://github.com/furechan/tempcache" }
readme = "README.md"
license = { text = "MIT License" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]

[project.optional-dependencies]
Expand All @@ -31,5 +32,5 @@ allow-publish = true

[tool.pytest.ini_options]
addopts = [ "-p no:cacheprovider"]
testpaths = ["tests",]
testpaths = ["tests"]

0 comments on commit 0d4ec5c

Please sign in to comment.