-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (76 loc) · 2.18 KB
/
pyproject.toml
File metadata and controls
84 lines (76 loc) · 2.18 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[project]
name = "django-elasticsearch-metrics"
version = "2026.0.3"
description = "Django app for storing time-series metrics in Elasticsearch."
authors = [
{name = "CenterForOpenScience", email = "support@cos.io"}
]
readme = "README.md"
license = "MIT"
requires-python = ">=3.10,<4"
keywords = [
"django",
"elastic",
"elasticsearch",
"elasticsearch-dsl",
"time-series",
"metrics",
"statistics",
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.optional-dependencies] # installable extras
elastic6 = [ "elasticsearch6-dsl>=6.3.0,<7.0.0" ]
elastic8 = [ "elasticsearch8>=8.0.0,<9.0.0" ]
# elastic9 = [ "elasticsearch9>=9.0.0,<10.0.0" ]
anydjango = [ "django" ]
[project.urls]
repository = "http://github.com/CenterForOpenScience/django-elasticsearch-metrics"
changelog = "https://github.com/CenterForOpenScience/django-elasticsearch-metrics/blob/master/CHANGELOG.md"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[dependency-groups] # not extras; only for development
tests = [
"factory-boy==3.3.3",
"tox>=4.0.0",
"coverage>=7.13.0",
]
lint = [
"flake8==7.3.0",
"flake8-bugbear==25.10.21",
"black==25.11.0",
"mypy==1.19.1",
]
dev = [
{ include-group = "tests" },
{ include-group = "lint" },
"konch>=3.0.0",
"poetry==2.3.2", # matches testbox.Containerfile
]
[tool.poetry]
packages = [
{ include = "elasticsearch_metrics" }
]
[tool.poetry.group.tests]
optional = true
[tool.poetry.group.lint]
optional = true
[tool.poetry.group.dev]
optional = true