forked from brutasse/graphite-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (53 loc) · 1.7 KB
/
pyproject.toml
File metadata and controls
57 lines (53 loc) · 1.7 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "graphite-render"
version = "1.1.8"
description = "based on graphite-api, which is based graphite-web, but maintained for python3."
readme = "README.rst"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [
{name = "Bruno Renié", email = "bruno@renie.fr"},
{name = "Christoph Settgast", email = "csett86_git@quicksands.de"},
]
keywords = ["graphite", "api", "monitoring", "visualization"]
classifiers = [
"Development Status :: 6 - Mature",
"Environment :: Web Environment",
"Framework :: Flask",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"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",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: System :: Monitoring",
]
dependencies = [
"Flask",
"PyYAML",
"cairocffi",
"pyparsing>=3.0.0",
"structlog",
"tzlocal",
]
[project.optional-dependencies]
sentry = ["raven[flask]"]
cyanite = ["cyanite"]
cache = ["flask-caching"]
statsd = ["statsd"]
docs = ["sphinx"]
[project.urls]
Homepage = "https://github.com/csett86/graphite-render"
Repository = "https://github.com/csett86/graphite-render"
[tool.setuptools.packages.find]
exclude = ["tests", "tests.*"]