-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mgdl-simple-cache"
dynamic = ["version"]
description = "Simple Cache is a lightweight cache manager designed to simplify caching operations using providers. It offers a convenient way to store and retrieve cached data efficiently in Python applications."
readme = "README.md"
authors = [
{ name = "Adaías Magdiel", email = "eu@adaiasmagdiel.com" }
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
keywords = ["cache", "caching", "deta", "deta space", "development", "utility", "tool"]
requires-python = ">=3.6"
dependencies = [
"deta"
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov"
]
[tool.setuptools.dynamic]
version = {attr = "simple_cache.__version__"}
[project.urls]
Homepage = "https://github.com/AdaiasMagdiel/simple-cache"
Issues = "https://github.com/AdaiasMagdiel/simple-cache/issues"