Files
grian-ui/pyproject.toml
Sean Mooney 8346769c9b set up basic unittesting
this chnage setup up unit testing with
stestr as the test runner and
django.test.SimpleTestCase as the base of our tests.

This avoid the depency on manage.py or run_tests.sh

Change-Id: Ib39d20861928a3052eaa9e9adc3f984ae20aad03
2025-05-19 23:51:57 +00:00

41 lines
1.3 KiB
TOML

[build-system]
requires = ["pbr>=6.0.0", "setuptools>=64.0.0"]
build-backend = "pbr.build"
[project]
name = "grian-ui"
description = "A horizon dashboard plugin for telemetry visualization"
readme = "README.rst"
authors = [
{name = "OpenStack", email = "openstack-discuss@lists.openstack.org"},
]
requires-python = ">=3.10"
license = "Apache-2.0"
classifiers = [
"Environment :: OpenStack",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
keywords = ["openstack", "horizon", "telemetry"]
[project.urls]
Homepage = "https://opendev.org/openstack/grian-ui"
Documentation = "https://docs.openstack.org/grian-ui/latest/"
Repository = "https://opendev.org/openstack/grian-ui"
Issues = "https://bugs.launchpad.net/grian-ui"
Changelog = "https://docs.openstack.org/releasenotes/grian-ui/"
[tool.stestr]
test_path = "./tests/grian_ui_tests/unit"
top_dir = "./"