-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.31 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "django-redis_metrics"
license = { text = "MIT" }
keywords = ["django", "redis_metrics", "redis", "metrics", "performance"]
requires-python = ">=3.8"
authors = [{ name = "Brad Montgomery", email = "brad@bradmontgomery.net" }]
description = "django-redis-metrics is a Django application for tracking application metrics backed by Redis."
dependencies = ["django", "redis"]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Framework :: Django',
]
dynamic = ["version", "readme"]
[project.urls]
"Homepage" = "https://github.com/bradmontgomery/django-redis-metrics"
"Bug Tracker" = "https://github.com/bradmontgomery/django-redis-metrics/issues"
[tool.setuptools]
packages = ["redis_metrics"]
include-package-data = true
[tool.setuptools.dynamic]
version = { attr = "redis_metrics.VERSION" }
readme = { file = ["README.rst"] }