forked from jb076/django-cache-helper
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 841 Bytes
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 841 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-cache-helper"
authors = [
{ name="YCharts", email="developers@ycharts.com" },
]
description = "a simple tool for making caching functions, methods, and class methods a little bit easier."
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"cache",
"django"
]
classifiers = [
"Programming Language :: Python :: 3",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Framework :: Django",
]
dependencies = []
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/ycharts/django_cache_helper"
[tool.setuptools]
packages = [
"cache_helper",
]
[tool.setuptools.dynamic]
version = {attr = "cache_helper.VERSION"}